:root {
  --green: #1cb15c;
  --green-dark: #149c4f;
  --green-soft: #eafaf1;
  --blue: #1877f2;
  --blue-dark: #0f63d6;
  --ink: #1f2d3d;
  --muted: #6b7785;
  --line: #eef1f5;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
}

* {
  box-sizing: border-box;
  text-align: right;
}

body {
  font-family: "Vazirmatn", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg-soft);
  line-height: 1.7;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

.text-green { color: var(--green) !important; }
.text-blue { color: var(--blue) !important; }
.bg-green { background-color: var(--green) !important; }
.bg-blue { background-color: var(--blue) !important; }

section {
  margin-bottom: 70px;
}

section.top-nav,
section.site-footer {
  margin-bottom: 0;
}

section:last-of-type {
  margin-bottom: 0;
}

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

.section-head h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.section-head p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: .95rem;
}

.see-all {
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
}

.see-all i {
  font-size: .75rem;
}

.top-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  min-height: 80px;
  position: sticky;
  top: 0;
  z-index: 1030;
  overflow: visible;
}

.top-nav .container {
  position: relative;
}

.top-nav .navbar {
  min-height: 60px;
}

.top-nav .nav-chevron {
  font-size: .65rem;
  margin-right: 4px;
  transition: transform 0.2s ease;
}

.nav-item--mega.is-open .nav-chevron {
  transform: rotate(180deg);
}

.mega-menu {
  display: none;
}

@media (min-width: 992px) {
  .nav-item--mega {
    position: static;
  }

  .mega-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1040;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-item--mega.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item--mega.is-open .nav-link--mega {
    color: var(--green);
  }
}

.mega-menu__panel {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 28px 32px;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 28px;
}

.mega-menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  color: #3d3d3d;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.5;
}

.mega-menu__link:hover {
  color: #007cff;
}

.mega-menu__chevron {
  flex-shrink: 0;
  display: block;
}

.mega-menu__badge {
  margin-right: auto;
  padding: 3px 10px;
  border-radius: 6px;
  background: #eafaf1;
  color: #23c45e;
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}

.mega-menu__link--more {
  font-weight: 700;
}

.mega-menu--simple .mega-menu__grid {
  grid-template-columns: 1fr;
  max-width: 360px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.brand-logo__img {
  display: block;
  width: auto;
  height: 25px;
}

.brand-logo--inline {
  vertical-align: middle;
  margin: 0 2px;
}

.top-nav .nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 0 !important;
}

.top-nav .nav-link:hover { color: var(--green); }

.top-nav .btn {
  height: 48px !important;
  min-width: 90px !important;
  border-radius: 10px !important;
  font-weight: 600;
  font-size: 0.9rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px !important;
  flex-shrink: 0;
  white-space: nowrap;
}

.top-nav .btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-green {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.btn-outline-green {
  border: 1px solid var(--green);
  color: var(--green);
  background: #fff;
}

.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}

.btn-outline-blue {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .top-nav .navbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 20px;
    width: 100%;
  }

  .top-nav .navbar > .brand-logo {
    grid-column: 1;
    justify-self: start;
    flex-shrink: 0;
  }

  .top-nav .navbar > #mainNav {
    grid-column: 2;
    display: flex !important;
    justify-content: center;
    min-width: 0;
    flex-basis: auto;
    flex-grow: 0;
    width: 100%;
  }

  .top-nav .navbar > .brand-logo .brand-logo__img {
    height: 25px;
    max-width: 178px;
  }

  .top-nav .navbar > .top-nav__auth--desktop {
    grid-column: 3;
    justify-self: end;
    flex-shrink: 0;
    gap: 8px;
    margin-right: 0 !important;
  }

  .top-nav .navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 39px;
    align-items: center;
    margin-right: 0 !important;
  }
  
  .top-nav .navbar-nav .nav-item {
    padding: 0;
  }
  
  .top-nav .navbar-nav .nav-link {
    white-space: nowrap;
  }

  .mobile-drawer__inner {
    display: contents;
  }

  .mobile-drawer__products,
  .mobile-drawer__footer {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .top-nav {
    padding: 12px 0;
    min-height: auto;
    border-bottom: 1px solid #eef2f6;
  }

  .top-nav .navbar {
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
  }

  .top-nav__mobile {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 8px;
    width: 100%;
    min-height: 48px;
  }

  .top-nav__menu-btn {
    grid-column: 1;
    justify-self: start;
    position: relative;
    z-index: 2;
    min-width: 40px;
    border: none;
    background: transparent;
    padding: 8px 4px;
    cursor: pointer;
    outline: none;
    box-shadow: none;
  }

  .top-nav__menu-btn:focus {
    outline: none;
    box-shadow: none;
  }

  .top-nav__menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 24px;
  }

  .top-nav__menu-icon span {
    display: block;
    height: 3px;
    border-radius: 3px;
    background: var(--blue);
  }

  .top-nav__menu-icon span:nth-child(1),
  .top-nav__menu-icon span:nth-child(3) {
    width: 18px;
  }

  .top-nav__menu-icon span:nth-child(2) {
    width: 24px;
  }

  .brand-logo--mobile {
    grid-column: 2;
    justify-self: center;
    position: static;
    transform: none;
    z-index: 1;
    margin: 0;
    min-width: 0;
    max-width: 100%;
  }

  .brand-logo--mobile .brand-logo__img {
    height: 20px;
    max-width: min(150px, 100%);
    object-fit: contain;
  }

  .top-nav__auth--header {
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  .top-nav__icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(35, 196, 94, 0.45);
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .top-nav__icon-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    z-index: 10040;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .top-nav__mobile {
    z-index: 10060;
    position: relative;
  }

  #mainNav.collapse {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(82vw, 320px);
    height: 100dvh;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, rgba(224, 240, 255, 0.96) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(236, 246, 255, 0.96) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10050;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    border: none;
    border-left: 2px solid rgba(0, 124, 255, 0.22);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    box-shadow: -8px 0 32px rgba(0, 60, 140, 0.14);
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease, visibility 0.3s ease;
    will-change: transform;
    pointer-events: none;
  }

  #mainNav.collapse.show {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .mobile-drawer__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 68px 14px 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  #mainNav .mobile-drawer__nav {
    gap: 0;
    margin: 0 !important;
    width: 100%;
    flex: 0 0 auto;
  }

  #mainNav .navbar-nav .nav-link {
    padding: 12px 4px !important;
    font-size: .95rem;
    font-weight: 600;
    color: #2f2f2f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: right;
  }

  #mainNav .nav-link--mega .nav-chevron {
    color: var(--green);
    font-size: .72rem;
    margin-right: auto;
    margin-left: 0;
  }

  .mobile-drawer__products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 6px;
    flex: 0 0 auto;
  }

  .mobile-drawer__product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 8px 10px 8px 12px;
    border-radius: 14px;
    background: linear-gradient(270deg, #ffffff 0%, rgba(214, 235, 255, 0.85) 100%);
    border: 1px solid rgba(0, 124, 255, 0.12);
    text-decoration: none;
    color: #2f2f2f;
    box-shadow: 0 2px 10px rgba(0, 80, 180, 0.06);
  }

  .mobile-drawer__product-label {
    flex: 1;
    min-width: 0;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
  }

  .mobile-drawer__product-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-drawer__product-icon--blue {
    border: 3px solid #007cff;
  }

  .mobile-drawer__product-icon--green {
    border: 3px solid #23c45e;
  }

  .mobile-drawer__product-icon img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .mobile-drawer__footer {
    margin-top: auto;
    padding-top: 28px;
    position: relative;
    flex: 0 0 auto;
  }

  .mobile-drawer__guide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 8px 22px;
    position: relative;
    z-index: 2;
  }

  .mobile-drawer__guide-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffd54f 0%, #ffb300 100%);
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(255, 179, 0, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    top: 10px;
  }

  .mobile-drawer__guide-label {
    font-size: .92rem;
    font-weight: 700;
    color: #3d3d3d;
  }

  .mobile-drawer__footer-bar {
    height: 56px;
    background: var(--green);
    border-top-left-radius: 0;
    margin: 0 -14px;
    width: calc(100% + 28px);
  }

  .nav-item--mega .mega-menu {
    display: none;
    position: static;
    padding: 2px 0 6px;
  }

  .nav-item--mega.is-open .mega-menu {
    display: block;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .mega-menu__panel {
    border: 1px solid rgba(0, 124, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    padding: 10px;
  }

  .hero {
    height: auto;
    max-height: none;
    min-height: 520px;
    padding: 28px 0 24px;
  }

  .hero .row {
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .col-lg-6:first-child {
    text-align: center;
    display: contents;
  }

  .hero .col-lg-6:last-child {
    display: block;
    grid-row: 3;
  }

  .hero-content-wrapper {
    min-height: auto;
    align-items: center;
    display: contents;
  }

  .hero-content-wrapper h1 {
    grid-row: 1;
    font-size: 1.35rem;
    text-align: center;
    line-height: 1.65;
    margin-bottom: 10px;
  }

  .hero-content-wrapper .lead {
    grid-row: 2;
    font-size: .88rem;
    text-align: center;
    margin-bottom: 0;
  }

  .hero-search {
    grid-row: 4;
    max-width: 100%;
    height: 52px;
    margin-top: 20px;
    border-radius: 14px;
    padding: 4px 6px 4px 4px;
    position: relative;
    z-index: 50;
  }

  .hero-search .city {
    font-size: .78rem;
    padding: 0 8px;
    white-space: nowrap;
  }

  .hero-search input {
    font-size: .8rem;
    padding: 6px 8px;
  }

  .hero-search .search-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
  }

  .hero-visual {
    display: block;
    position: relative;
    height: 220px;
    margin: 16px auto 0;
    max-width: 320px;
  }

  .hero-visual .doc-bubble {
    width: 56px !important;
    height: 56px !important;
  }

  .hero-visual .doc-bubble.b1,
  .hero-visual .doc-bubble.b2,
  .hero-visual .doc-bubble.b3,
  .hero-visual .doc-bubble.b4 {
    width: 64px !important;
    height: 64px !important;
  }

  .hero-visual .ai-badge,
  .hero-visual .hero-stat {
    transform: scale(0.85);
  }

  .blue-gradient-bg .section-head h2 {
    font-size: 1.1rem;
    margin-bottom: 20px !important;
  }

  .blue-gradient-bg .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-card {
    min-height: 96px;
    padding: 16px 14px;
    border-radius: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }

  .service-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .service-card .icon-box__icon {
    width: 28px;
    height: 28px;
  }

  .service-card .txt h5 {
    font-size: .95rem;
  }

  .service-card .txt p {
    font-size: .8rem;
  }
}

.container {
  max-width: 1441px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1440px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.hero {
  background: url('../images/bg.png') center center / cover no-repeat;
  color: #fff;
  padding: 50px 0;
  height: 390px;
  max-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(24, 119, 242, 0.7);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero .col-lg-6:first-child {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 20;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 169px;
}

.hero-content-wrapper h1 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.5;
  text-align: right;
  margin: 0 0 16px 0;
}

.hero-content-wrapper .lead {
  font-size: 1.05rem;
  opacity: .92;
  margin: 0 0 28px 0;
  text-align: right;
}

.hero-search {
  background: #fff;
  border-radius: 12px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  width: 100%;
  max-width: 636px;
  height: 60px;
  direction: ltr;
  position: relative;
  z-index: 30;
}

.hero-search .city {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: .85rem;
  padding: 0 10px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  order: 0;
}

.hero-search input {
  border: none;
  flex: 1;
  outline: none;
  color: var(--ink);
  font-size: .9rem;
  background: transparent;
  padding: 6px 10px;
  text-align: right;
  height: 100%;
  order: 1;
  min-width: 0;
}

.hero-search__input-wrap {
  position: relative;
  flex: 1;
  order: 1;
  min-width: 0;
  height: 100%;
  z-index: 35;
}

.hero-search__input-wrap > input {
  width: 100%;
  height: 100%;
}

.hero-search__suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  padding: 8px;
  z-index: 1060;
  direction: rtl;
}

.hero-search__suggest[hidden] {
  display: none !important;
}

.hero-search__suggest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}

.hero-search__suggest-group {
  padding: 8px 10px 4px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
}

.hero-search__suggest-item {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.hero-search__suggest-item:hover {
  background: #f0fdf4;
}

.hero-search__suggest-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-search__suggest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-search__suggest-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-search__suggest-title {
  font-size: .85rem;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-search__suggest-subtitle {
  font-size: .75rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-search__suggest-empty {
  padding: 12px 10px;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}

.hero-search input::placeholder {
  text-align: right;
  font-size: .85rem;
}

.hero-search .search-btn {
  background: var(--green);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.hero-search .search-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-search .search-btn:hover {
  background: var(--green-dark);
}

.hero-search__city-wrap {
  position: relative;
  order: 0;
  flex-shrink: 0;
  z-index: 40;
}

.hero-search .city {
  border: none;
  background: transparent;
  cursor: pointer;
  height: 100%;
  transition: color 0.2s ease;
}

.hero-search .city:hover,
.hero-search .city[aria-expanded="true"] {
  color: var(--green);
}

.hero-search__city-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(280px, 78vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  padding: 10px;
  z-index: 1060;
  direction: rtl;
}

.hero-search__city-dropdown[hidden] {
  display: none !important;
}

.hero-search__city-filter {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .85rem;
  outline: none;
  margin-bottom: 8px;
}

.hero-search__city-filter:focus {
  border-color: var(--green);
}

.hero-search__city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
}

.hero-search__city-item {
  width: 100%;
  border: none;
  background: transparent;
  text-align: right;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: .85rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease;
}

.hero-search__city-item:hover,
.hero-search__city-item.is-active {
  background: #f0fdf4;
  color: var(--green);
}

.hero-search__city-item--all {
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  border-radius: 8px 8px 0 0;
}

.hero-search__city-empty {
  padding: 10px;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-bubble {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  transition: .3s;
}

.doc-bubble:hover {
  transform: scale(1.05);
  z-index: 10;
}

.doc-bubble.b1 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%) translateX(-20px) translateY(-80px);
  z-index: 3;
}

.doc-bubble.b2 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(110px) translateY(-90px);
  z-index: 4;
}

.doc-bubble.b3 {
  width: 130px;
  height: 130px;
  top: 38%;
  left: 32%;
  transform: translate(-50%, -50%) translateX(-30px) translateY(100px);
  z-index: 5;
}

.doc-bubble.b4 {
  width: 110px;
  height: 110px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%) translateX(100px) translateY(90px);
  z-index: 2;
}

.doc-bubble.blur-1 {
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-160px) translateY(-50px);
  filter: blur(8px);
  opacity: 0.5;
  z-index: 1;
}

.doc-bubble.blur-2 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(160px) translateY(-40px);
  filter: blur(10px);
  opacity: 0.4;
  z-index: 1;
}

.doc-bubble.blur-3 {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-20px) translateY(-140px);
  filter: blur(12px);
  opacity: 0.3;
  z-index: 0;
}

.ai-badge {
  position: absolute;
  top: 50px;
  left: 25px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.ai-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  color: inherit;
  text-decoration: none;
}

.ai-badge .ai-circle {
  width: 44px;
  height: 44px;
  background: #f5b50a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(245, 181, 10, 0.3);
}

.ai-badge .ai-text {
  text-align: right;
}

.ai-badge .ai-big {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.ai-badge small {
  display: block;
  opacity: .9;
  font-size: .6rem;
  color: #fff;
}

.hero-stat {
  position: absolute;
  bottom: 32px;
  right: 298px;
  text-align: center;
  z-index: 20;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-stat small {
  display: block;
  opacity: .9;
  font-size: .75rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
}

.service-card {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: .2s;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-height: 110px;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.service-card .txt {
  text-align: right;
  flex: 1;
}

.service-card .txt h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
  text-align: right;
}

.service-card .txt p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  text-align: right;
}

.icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.icon-box__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.icon-box__icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.consultation-section {
  overflow-x: hidden;
  overflow-y: visible;
  margin-bottom: 56px;
}

.consultation-section .section-head {
  margin-bottom: 32px;
}

.consultation-section .container {
  overflow: visible;
}

.doctor-swiper-wrap {
  margin: 0 -15px;
  padding: 8px 15px 28px;
  overflow-x: hidden;
  overflow-y: visible;
}

.doctor-swiper {
  overflow: visible;
}

.doctor-swiper .swiper-slide {
  width: 310px;
  padding-bottom: 8px;
  box-sizing: border-box;
}

.doctor-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  overflow: hidden;
  height: auto;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.doctor-card:hover {
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.doctor-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 22px;
  background: #fff;
}

.doctor-card__photo img {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow:
    0 10px 24px -2px rgba(0, 0, 0, 0.16),
    0 4px 10px rgba(0, 0, 0, 0.08);
}

.doctor-card__body {
  flex: 1;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
}

.doctor-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: auto;
}

.doctor-card__info {
  flex: 1;
  min-width: 0;
}

.doctor-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.doctor-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #353535;
  margin: 0 0 4px;
  line-height: 1.5;
}

.doctor-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.doctor-card__rating i {
  color: #ffb800;
  font-size: 0.72rem;
}

.doctor-card__rating .score {
  color: #353535;
  font-weight: 600;
}

.doctor-card__rating .count {
  color: #888888;
  font-weight: 400;
}

.doctor-card__spec,
.doctor-card__city {
  color: #6d6d6d;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.6;
}

.doctor-card__spec {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.doctor-card__spec[title] {
  cursor: help;
}

.doctor-card__city i {
  color: #23c45e;
  font-size: 0.78rem;
  margin-left: 4px;
}

.doctor-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 41px;
  margin-top: 12px;
  border: 1px solid #007cff;
  border-radius: 8px;
  color: #007cff;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.doctor-card__btn:hover {
  background: #007cff;
  color: #fff;
}

.cta-banners-section {
  margin-bottom: 72px;
}

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

.cta-banner {
  border-radius: 15px;
  padding: 24px 28px 24px 210px;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.cta-banner.blue {
  background: #007cff;
}

.cta-banner.green {
  background: #23c45e;
}

.cta-illustration {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: right;
}

.cta-content h3 {
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 6px;
  line-height: 1.35;
}

.cta-content p { 
  opacity: .9; 
  margin: 0 0 14px; 
  font-size: .85rem; 
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 24px;
  transition: .3s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.specialties-section .section-head {
  margin-bottom: 32px;
}

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

.specialty-card {
  padding: 18px 12px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: .2s;
  height: 100%;
  min-height: 148px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
}

.specialty-card:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

.specialty-card .ic {
  font-size: 2.6rem;
  color: var(--green);
  margin-bottom: 14px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.specialty-card .ic img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.specialty-card h6 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 8px;
  text-align: center;
}

.specialty-card small { 
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}

@media (min-width: 1200px) {
  .col-xl-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}

.why-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.why-cta-banner {
  position: relative;
  min-height: 138px;
  border-radius: 15px;
  background: #007cff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 18px 22px 18px 150px;
  color: #fff;
  box-shadow: 0 4px 11px rgba(0, 124, 255, 0.12);
}

.why-cta-green {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 192px;
  height: 107px;
  object-fit: fill;
  pointer-events: none;
}

.why-cta-illustration {
  position: absolute;
  left: 6px;
  bottom: 0;
  width: 130px;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  object-position: left bottom;
  z-index: 2;
  pointer-events: none;
}

.why-cta-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: right;
}

.why-cta-content h3 {
  font-weight: 700;
  font-size: .92rem;
  margin: 0 0 6px;
  line-height: 1.55;
}

.why-cta-content p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.65;
  opacity: .88;
}

.blog-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 210px;
  color: #fff;
  display: block;
}

.blog-card.big { 
  min-height: 432px; 
}

.blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(28,177,92,.92), rgba(28,177,92,0));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.blog-card .overlay h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  text-align: right;
  width: 100%;
}

.blog-card .date {
  font-size: .75rem;
  opacity: .85;
  display: inline-block;
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.testimonial-section {
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.testimonial-section .section-head {
  margin-bottom: 28px;
}

.testimonial-swiper-wrap {
  padding: 8px 0 32px;
}

.testimonial-swiper {
  overflow: visible;
  padding: 12px 0 20px;
}

.testimonial-swiper .swiper-slide {
  width: min(640px, 78vw);
}

.testi-card {
  background: #fff;
  border: none;
  border-radius: 10px;
  height: 232px;
  padding: 28px 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
}

.testi-card__quote {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  color: #23c45e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.testi-card__quote img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.testi-card p {
  color: #5d5d5d;
  font-size: .9rem;
  line-height: 1.9;
  margin: 0 0 18px;
  flex: 1;
  font-weight: 400;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.testi-card__name {
  font-weight: 700;
  font-size: .92rem;
  color: #353535;
}

.clinics-section .section-head h2 {
  color: #3d3d3d;
}

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

.clinic-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 138px;
  padding: 24px 25px 24px 27px;
  background: #fff;
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.clinic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  color: inherit;
  text-decoration: none;
}

.clinic-card__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clinic-card__icon img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.clinic-card__content {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.clinic-card__title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #353535;
  line-height: 1.55;
}

.clinic-card__address {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: #6d6d6d;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  font-size: .85rem;
  transition: .2s;
}

.partner-box:hover { box-shadow: 0 8px 20px rgba(0,0,0,.06); }

.partners-wrap {
  background: linear-gradient(180deg, #f6f8fb, #eef4ff);
  border-radius: 18px;
  padding: 26px;
}

.symptom-cta__banner {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.symptom-cta__collage {
  flex: 0 0 44.4%;
  max-width: 634px;
  border-radius: 15px;
  overflow: hidden;
}

.symptom-cta__collage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 247px;
  object-fit: cover;
}

.symptom-cta__panel {
  flex: 1;
  min-width: 0;
  min-height: 247px;
  background: #23c45e;
  border-radius: 15px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 22px 24px 40px;
  overflow: hidden;
}

.symptom-cta__panel-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.symptom-cta__panel-content h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.6;
}

.symptom-cta__panel-content p {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.85;
  opacity: 0.96;
  max-width: 420px;
}

.symptom-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 9px;
  border: 2px solid #a8d2ff;
  background: #007cff;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  position: relative;
  right: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.symptom-cta__btn:hover {
  background: #0066d6;
  color: #fff;
  transform: translateY(-1px);
}

.symptom-cta__panel-visual {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.symptom-cta__panel-visual img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.symptom-cta__panel-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 15px 15px 0 0;
  padding: 8px 18px 6px;
  z-index: 3;
}

.symptom-cta__panel-logo .brand-logo__img {
  height: 16px;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: #f8faff;
}

.faq-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: min(1180px, 128%);
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(94, 172, 255, 0.28) 0%,
    rgba(94, 172, 255, 0.1) 42%,
    rgba(94, 172, 255, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section .section-head h2 {
  color: #3d3d3d;
}

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

.faq-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: none;
  padding: 40px 17px 18px;
  min-height: 196px;
}

.faq-card__logo {
  position: absolute;
  top: 10px;
  right: 16px;
  width: auto;
  height: 19px;
  z-index: 2;
}

.faq-card__logo img {
  display: block;
  width: auto;
  height: 19px;
}

.faq-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  /* height: 40px; */
  margin: 0 0 12px;
  padding: 10px 10px 10px 10px;
  border: none;
  border-radius: 10px;
  background: #e2f0ff;
  cursor: pointer;
  text-align: right;
}

.faq-card__question {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #353535;
  line-height: 1.55;
}

.faq-card__toggle {
  flex-shrink: 0;
  width: 12px;
  height: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-card__toggle img {
  display: block;
  width: 12px;
  height: 7px;
  transition: transform 0.2s ease;
}

.faq-card.open .faq-card__toggle img {
  transform: rotate(180deg);
}

.faq-card__body {
  display: none;
  padding: 0 2px;
}

.faq-card__body p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.85;
  color: #6d6d6d;
}

.faq-card.open .faq-card__body {
  display: block;
}

.certs-section {
  background: #fff;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 36px 27px;
}

.cert-card {
  text-align: center;
}

.cert-card__thumb {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #a8d2ff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.cert-card__thumb--portrait {
  aspect-ratio: 182.714 / 258;
}

.cert-card__thumb--landscape {
  aspect-ratio: 182.714 / 131;
}

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

.cert-card__thumb--landscape img {
  object-position: center top;
}

.cert-card p {
  margin: 12px 0 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: #353535;
  min-height: 42px;
}

.site-footer {
  padding: 0;
  background: #fff;
  border-top: none;
}

.footer-top-strip {
  height: 26px;
  background: linear-gradient(180deg, #f8f9fa 0%, #d4e9ff 100%);
}

.site-footer .container {
  padding-top: 34px;
  padding-bottom: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(500px, 540px) minmax(0, 1fr);
  grid-template-areas: "intro links";
  gap: 32px 48px;
  align-items: start;
  margin-bottom: 100px;
}

.footer-intro {
  grid-area: intro;
}

.footer-links {
  grid-area: links;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 16px;
}

.footer-logo.brand-logo,
.footer-intro .brand-logo {
  display: inline-flex;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo .brand-logo__img {
  height: 32px;
}

.footer-intro p {
  color: #3d3d3d;
  font-size: .84rem;
  line-height: 1.95;
  margin: 0 0 20px;
}

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

.footer-product-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #3d3d3d;
}

.footer-product-card:hover {
  color: #007cff;
}

.footer-product-card__box {
  width: 53px;
  height: 53px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-product-card__box--blue {
  border: 4px solid #007cff;
}

.footer-product-card__box--green {
  border: 4px solid #23c45e;
}

.footer-product-card__box img {
  display: block;
  width: 36px;
  height: 36px;
}

.footer-product-card__label {
  flex: 1;
  min-width: 0;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-col h6,
.site-footer h6 {
  font-weight: 700;
  color: #007cff;
  margin-bottom: 18px;
  font-size: .92rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 12px;
}

.site-footer li a {
  color: #3d3d3d;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.footer-link-chevron {
  flex-shrink: 0;
  display: block;
}

.site-footer li a:hover {
  color: #007cff;
}

.footer-bottom {
  background: #23c45e;
  margin-top: 32px;
  padding: 0 0 22px;
}

.footer-panel {
  background: #fff;
  /* border-top: 1px solid #d9d9d9; */
  border-radius: 0 0 15px 15px;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); */
  padding: 5px 25px 5px 25px;
  margin-top: -85px;
}

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

.footer-bar__features {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-self: start;
}

.footer-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-feature-item__label {
  font-size: .72rem;
  font-weight: 700;
  color: #3d3d3d;
  line-height: 1.45;
  max-width: 118px;
}

.footer-guide-badge {
  width: 70px;
  height: 68px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffe297 0%, #ffd569 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-guide-badge__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffb800;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-guide-badge__icon img {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-ai-badge__pill {
  width: 170px;
  height: 68px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffe297 0%, #ffd569 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  flex-shrink: 0;
  direction: ltr;
}

.footer-ai-badge__star {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffb800;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-ai-badge__star img {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-ai-badge__avatars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-ai-badge__avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-right: -12px;
  flex-shrink: 0;
}

.footer-ai-badge__avatars img:first-child {
  margin-right: 0;
}

.footer-bar__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  width: auto;
  object-fit: contain;
}

.trust-badge--1 {
  height: 76px;
}

.trust-badge--2 {
  height: 80px;
}

.trust-badge--3 {
  height: 81px;
}

.trust-badge--4 {
  height: 76px;
}

.footer-bar__social {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-self: end;
  direction: ltr;
}

.footer-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-social-item span {
  font-size: .68rem;
  font-weight: 600;
  color: #007cff;
  direction: rtl;
}

.footer-social-box {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.footer-social-box--instagram {
  color: #e4405f;
}

.footer-social-box--telegram {
  color: #007cff;
}

.footer-social-box__circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #007cff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}

.footer-social-box--whatsapp {
  color: #25d366;
  font-size: 1.45rem;
}

.footer-social-box--bale {
  color: #007cff;
  font-size: 1.2rem;
}

.footer-copyright {
  margin: 18px 0 0;
  padding: 0 16px;
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "links";
    gap: 32px;
  }

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

  .footer-products-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .footer-bar__features,
  .footer-bar__social,
  .footer-bar__trust {
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .trust-badge--1,
  .trust-badge--4 {
    height: 58px;
  }

  .trust-badge--2 {
    height: 62px;
  }

  .trust-badge--3 {
    height: 64px;
  }
}

.soft-pill {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .9rem;
}

.soft-pill.blue i { color: var(--blue); }
.soft-pill.green i { color: var(--green); }

@media (max-width: 991px) {
  .symptom-cta__banner,
  .symptom-cta__panel {
    flex-direction: column;
  }

  .symptom-cta__collage {
    flex: none;
    max-width: none;
    width: 100%;
  }

  .symptom-cta__panel {
    padding: 24px 20px 48px;
  }

  .symptom-cta__panel-visual {
    flex: none;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 16px;
    order: -1;
  }

  .symptom-cta__panel-content {
    text-align: center;
  }

  .symptom-cta__btn {
    right: 0;
  }

  .symptom-cta__panel-content p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .symptom-cta__panel-logo {
    right: 50%;
    transform: translateX(50%);
  }
  
  .top-nav .navbar-nav {
    margin-right: 0 !important;
  }
  
  .top-nav__auth--desktop {
    margin-right: 0 !important;
  }
  
  .cta-banner {
    padding: 22px 24px 22px 190px;
  }

  .cta-illustration {
    width: 190px;
  }
  
  .why-cta-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-cta-banner {
    min-height: 132px;
    padding: 16px 18px 16px 132px;
  }

  .why-cta-green {
    width: 168px;
    height: 94px;
  }

  .why-cta-illustration {
    width: 112px;
    max-height: 104px;
    left: 4px;
  }

  .why-cta-content h3 {
    font-size: .88rem;
  }

  .why-cta-content p {
    font-size: .74rem;
  }
  
  .testimonial-swiper .swiper-slide {
    width: min(540px, 88vw);
  }

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

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

  .certs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 20px;
  }

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

  .testi-card {
    height: auto;
    min-height: 200px;
    padding: 24px 24px 20px;
  }
}

@media (max-width: 767px) {
  .blog-card.big { min-height: 240px; }

  .consultation-section {
    margin-bottom: 48px;
  }

  .cta-banners-section {
    margin-bottom: 56px;
  }

  .cta-banners-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .cta-banner {
    padding: 20px 16px 20px 170px;
    height: auto;
    min-height: 140px;
  }

  .cta-content {
    text-align: right;
  }

  .cta-illustration {
    width: 170px;
  }
  
  .why-cta-grid {
    grid-template-columns: 1fr;
  }

  .why-cta-banner {
    min-height: 128px;
    padding: 14px 16px 14px 118px;
  }

  .why-cta-green {
    width: 150px;
    height: 84px;
  }

  .why-cta-illustration {
    width: 98px;
    max-height: 92px;
  }

  .why-cta-content {
    text-align: right;
  }
  
  .blog-card {
    min-height: 160px;
  }
  
  .blog-card.big { 
    min-height: 240px; 
  }
  
  .blog-card .overlay {
    padding: 12px;
  }
  
  .blog-card .overlay h5 {
    font-size: .9rem;
  }
  
  .blog-card .date {
    font-size: .7rem;
  }
  
  .testimonial-swiper .swiper-slide {
    width: 92vw;
  }

  .testi-card {
    height: auto;
    min-height: 180px;
    padding: 22px 20px 18px;
  }

  .testi-card p {
    font-size: .82rem;
  }

  .doctor-swiper .swiper-slide {
    width: min(310px, 82vw);
  }

  .doctor-card {
    height: auto;
    min-height: 375px;
  }

  .doctor-card__name {
    font-size: 0.88rem;
  }

  .clinics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .clinic-card {
    min-height: 120px;
    padding: 18px 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .cert-card p {
    min-height: auto;
  }

  .faq-card {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .hero-search {
    flex-wrap: nowrap;
    padding: 4px 6px 4px 4px;
    gap: 4px;
    height: 52px;
    max-width: 100%;
  }

  .hero-search .city {
    width: auto;
    border-right: 1px solid var(--line);
    border-bottom: none;
    padding-bottom: 0;
    justify-content: flex-start;
    flex-shrink: 0;
  }

  .hero-search input {
    width: auto;
    flex: 1;
    text-align: right;
    order: 0;
    min-width: 0;
  }

  .hero-search__input-wrap {
    flex: 1;
    min-width: 0;
    order: 0;
  }

  .hero-search .search-btn {
    width: 44px;
    height: 44px;
    order: 0;
    flex-shrink: 0;
  }
  
  .cta-banner {
    padding: 18px 14px 18px 148px;
    min-height: 132px;
  }

  .cta-illustration {
    width: 148px;
  }
  
  .cta-content h3 {
    font-size: 1.05rem;
  }
  
  .cta-content p {
    font-size: .8rem;
  }
  
  .btn-outline-white {
    padding: 8px 18px;
    font-size: .85rem;
  }
  
  .specialty-card {
    padding: 14px 10px 16px;
    min-height: 118px;
    border-radius: 12px;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  
  .specialty-card .ic {
    font-size: 2rem;
    margin-bottom: 12px;
    margin-top: 2px;
  }

  .specialty-card .ic img {
    width: 48px;
    height: 48px;
  }
  
  .specialty-card h6 {
    font-size: .85rem;
  }
  
  .specialty-card small {
    font-size: .75rem;
  }
  
  .why-cta-banner {
    min-height: 120px;
    padding: 12px 14px 12px 104px;
    border-radius: 14px;
  }

  .why-cta-green {
    width: 132px;
    height: 74px;
  }

  .why-cta-illustration {
    width: 86px;
    max-height: 82px;
  }

  .why-cta-content h3 {
    font-size: .82rem;
  }

  .why-cta-content p {
    font-size: .68rem;
  }
  
  .testi-card {
    min-height: 160px;
    padding: 18px 16px;
  }

  .testi-card p {
    font-size: .78rem;
  }
}


.treatment-centers-section .centers-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.treatment-centers-section .center-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment-centers-section .center-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.treatment-centers-section .center-card img {
  width: 100%;
  flex: 3 1 auto;
  min-height: 88px;
  object-fit: cover;
  display: block;
}

.treatment-centers-section .center-card .label {
  position: static;
  flex: 2 1 auto;
  background: var(--green);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  min-height: 64px;
  text-align: center;
}

.treatment-centers-section .center-card .label .num {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.treatment-centers-section .center-card .label .name {
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 6px;
}

.treatment-centers-section .center-card .label .name i {
  display: none;
}

.treatment-centers-section .center-card--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(0, 2fr);
  min-height: 112px;
}

.treatment-centers-section .center-card--feature .label {
  min-height: 112px;
  padding: 12px;
  order: 1;
}

.treatment-centers-section .center-card--feature img {
  min-height: 112px;
  height: 100%;
  order: 2;
}

.treatment-centers-section .center-card--feature .label .num {
  font-size: 1.2rem;
}

.treatment-centers-section .center-card--feature .label .name {
  font-size: .8rem;
}

@media (min-width: 992px) {
  .treatment-centers-section .centers-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 0;
  }

  .treatment-centers-section .center-card {
    flex: 0 0 150px;
    width: 150px;
    height: 449px;
    display: block;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    flex-shrink: 0;
    box-shadow: none;
  }

  .treatment-centers-section .center-card:hover {
    transform: none;
    box-shadow: none;
  }

  .treatment-centers-section .center-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .treatment-centers-section .center-card.active {
    flex: 0 0 444px;
    width: 444px;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
  }

  .treatment-centers-section .center-card.active img {
    transform: scale(1.05);
  }

  .treatment-centers-section .center-card:not(.active) {
    flex: 0 0 150px;
    width: 150px;
    box-shadow: none;
  }

  .treatment-centers-section .center-card .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--green);
    height: 70px;
    min-height: 70px;
    gap: 0;
  }

  .treatment-centers-section .center-card .label .num {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    text-align: center;
  }

  .treatment-centers-section .center-card .label .name {
    font-size: .75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .treatment-centers-section .center-card .label .name i {
    font-size: .85rem;
    display: none;
  }

  .treatment-centers-section .center-card.active .label {
    padding: 20px 24px;
    background: var(--blue);
    height: 70px;
    flex-direction: row;
    justify-content: space-between;
  }

  .treatment-centers-section .center-card.active .label .num {
    font-size: 1.8rem;
    text-align: right;
  }

  .treatment-centers-section .center-card.active .label .name {
    font-size: 1.1rem;
    text-align: left;
  }

  .treatment-centers-section .center-card.active .label .name i {
    font-size: 1.2rem;
    display: inline-block;
  }

  .treatment-centers-section .center-card--feature {
    grid-column: auto;
    display: block;
    min-height: 0;
  }

  .treatment-centers-section .center-card--feature .label,
  .treatment-centers-section .center-card--feature img {
    order: unset;
    min-height: 0;
  }
}

.partners-section .partners-wrap {
  position: relative;
  overflow: hidden;
  background: #f8faff;
  border-radius: 18px;
  padding: 28px 22px 32px;
}

.partners-section .partners-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(24, 119, 242, 0.5) 0%, rgba(24, 119, 242, 0.15) 40%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.partners-section .partners-row {
  position: relative;
  z-index: 1;
}

.partners-section .partners-row + .partners-row {
  margin-top: 36px;
  padding-top: 4px;
}

.partners-section .partners-row .section-head {
  margin-bottom: 18px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.partner-box {
  background: #fff;
  border-radius: 12px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
}

.partner-box:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--green);
}

.partner-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-box img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-box:hover img {
  transform: scale(1.05);
}

@media (max-width: 1199px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  
  .partner-box {
    height: 120px;
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .partner-box {
    height: 100px;
    padding: 8px;
  }
}

@media (max-width: 576px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .partner-box {
    height: 85px;
    padding: 6px;
  }
}

.blue-gradient-bg {
  position: relative;
  overflow: hidden;
  background: #f8faff;
}

.blue-gradient-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(24, 119, 242, 0.5) 0%, rgba(24, 119, 242, 0.15) 40%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.blue-gradient-bg .container {
  position: relative;
  z-index: 1;
}

.blue-gradient-bg-soft {
  position: relative;
  overflow: hidden;
  background: #f5f9ff;
}

.blue-gradient-bg-soft::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(24, 119, 242, 0.35) 0%, rgba(24, 119, 242, 0.1) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.blue-gradient-bg-soft .container {
  position: relative;
  z-index: 1;
}

.blue-gradient-bg-deep {
  position: relative;
  overflow: hidden;
  background: #f0f5ff;
}

.blue-gradient-bg-deep::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(24, 119, 242, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(24, 119, 242, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at center, rgba(24, 119, 242, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.blue-gradient-bg-deep .container {
  position: relative;
  z-index: 1;
}

.home-seo-content {
  padding-top: 48px;
  padding-bottom: 56px;
}

.home-seo-content__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.home-seo-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
}

.seo-accordion-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 18px 24px;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: right;
}

.seo-accordion-card__title {
  flex: 1;
  min-width: 0;
  color: #3d3d3d;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
}

.seo-accordion-card__toggle {
  flex-shrink: 0;
  width: 12px;
  height: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.seo-accordion-card__toggle img {
  display: block;
  width: 12px;
  height: 7px;
  transition: transform 0.2s ease;
}

.seo-accordion-card.open .seo-accordion-card__toggle img {
  transform: rotate(180deg);
}

.seo-accordion-card__body {
  display: none;
  padding: 0 24px 22px;
}

.seo-accordion-card.open .seo-accordion-card__body {
  display: block;
}

.home-seo-block h2,
.home-seo-block h3 {
  color: #3d3d3d;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.6;
}

.home-seo-block h3 {
  font-size: 1rem;
}

.home-seo-block p,
.home-seo-block li {
  color: #4b5563;
  font-size: .92rem;
  line-height: 1.9;
  text-align: justify;
}

.home-seo-block ul {
  margin: 0;
  padding-right: 1.2rem;
}

.home-seo-block p + p,
.home-seo-block p + ul,
.home-seo-block ul + p,
.home-seo-block h3 + p,
.home-seo-block h2 + h3 {
  margin-top: 12px;
}

.home-seo-block a {
  color: var(--blue);
  font-weight: 600;
}

.home-seo-block a:hover {
  color: var(--green);
}

@media (max-width: 767px) {
  .seo-accordion-card__head {
    padding: 16px;
  }

  .seo-accordion-card__body {
    padding: 0 16px 18px;
  }
}