.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  display: inline-block;
  vertical-align: middle;
}

.bento-card-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 28, 28, 0.9), transparent);
}

.mobile-menu {
  position: fixed;
  inset: 8rem 0 0;
  background: rgba(26, 28, 28, 0.45);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 60;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  margin: 1rem;
  padding: 1rem;
  border: 1px solid #d2c5ab;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(26, 28, 28, 0.16);
  display: grid;
  gap: 0.5rem;
  max-height: calc(100vh - 6.2rem);
  overflow-y: auto;
}

.mobile-menu__link,
.mobile-menu__cta {
  border-radius: 0.75rem;
  padding: 0.95rem 1rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.mobile-menu__link {
  color: #1a1c1c;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu__link:hover {
  background: #f3f3f4;
  color: #745b00;
}

.mobile-menu__cta {
  background: #ffcc00;
  color: #6f5700;
  text-align: left;
}

.mobile-services {
  display: grid;
  gap: 0.4rem;
}

.mobile-services__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.mobile-services__toggle .material-symbols-outlined {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.mobile-services__list {
  display: grid;
  gap: 0.35rem;
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 0.9rem;
  border-left: 2px solid #efe3bd;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
}

.mobile-services.is-open .mobile-services__list {
  max-height: 32rem;
  opacity: 1;
  padding: 0.25rem 0 0.25rem 0.9rem;
}

.mobile-services.is-open .mobile-services__toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.mobile-services__link {
  border-radius: 0.75rem;
  padding: 0.8rem 0.95rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #4e4632;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-services__link:hover {
  background: #f8f4e8;
  color: #745b00;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 60;
  min-width: 18rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid #d2c5ab;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(26, 28, 28, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 0.8rem;
  padding: 0.8rem 0.95rem;
  white-space: normal;
  color: #1a1c1c;
  font-family: "Open Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: #f8f4e8;
  color: #745b00;
  transform: translateX(2px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.top-social-link {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffcc00;
  border: 1px solid rgba(255, 204, 0, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(26, 28, 28, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-social-link:hover {
  background: #ffcc00;
  color: #6f5700;
  border-color: #ffcc00;
  box-shadow: 0 16px 30px rgba(255, 204, 0, 0.24);
  transform: translateY(-2px);
}

.top-social-link__icon {
  width: 0.92rem;
  height: 0.92rem;
  display: block;
}

.site-logo {
  width: 5.85rem;
  height: 5.85rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #111111 0%, #171717 100%);
}

.site-footer__panel {
  position: relative;
  padding: clamp(1.8rem, 3.6vw, 2.8rem);
  border-radius: 2rem;
  border: 1px solid rgba(255, 204, 0, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.site-footer__brand,
.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
  min-width: 0;
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 0, 0.18);
  background: rgba(255, 204, 0, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffe08b;
}

.site-footer h4,
.site-footer p,
.site-footer ul {
  margin: 0;
}

.site-footer h4 {
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffe08b;
  width: 100%;
  text-align: left;
}

.site-footer__brand p,
.site-footer__column p {
  max-width: 32ch;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer ul {
  width: 100%;
  display: grid;
  gap: 0.72rem;
}

.site-footer ul li {
  line-height: 1.6;
}

.site-footer ul a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer ul a:hover,
.site-footer ul a:focus-visible {
  color: #ffcc00 !important;
  transform: translateX(4px);
}

.site-footer li.flex {
  align-items: flex-start;
}

.site-footer li.flex .material-symbols-outlined {
  width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 204, 0, 0.12);
  color: #ffcc00 !important;
  font-size: 1rem;
  flex: 0 0 auto;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.site-footer .top-social-link {
  background: rgba(255, 204, 0, 0.08);
  color: #ffe08b;
  border-color: rgba(255, 204, 0, 0.2);
}

.site-footer .top-social-link:hover {
  color: #6f5700;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  max-width: none;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #ffcc00;
}

.site-footer__column--contact h4 {
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__bottom {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(11rem, 0.72fr) minmax(13rem, 0.92fr) minmax(0, 0.95fr);
    gap: 1.6rem;
  }

  .site-footer__column--menu {
    padding-left: 0.6rem;
  }

  .site-footer__column--contact {
    padding-left: 1rem;
  }
}

body > .bg-on-surface.text-surface {
  padding-top: 0.42rem !important;
  padding-bottom: 0.42rem !important;
}

body > .bg-on-surface.text-surface .material-symbols-outlined {
  font-size: 0.98rem;
}

body > header {
  height: 4.5rem !important;
}

body > header .p-2 {
  padding: 0.34rem;
}

body > header .p-2 .material-symbols-outlined {
  font-size: 1.2rem;
}

body > header [data-menu-toggle] .material-symbols-outlined {
  font-size: 1.55rem;
}

body > main {
  margin-top: 4.5rem !important;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  padding: 3.8rem 0 4.6rem;
  overflow: hidden;
  background: #1a1c1c;
  touch-action: pan-y;
}

.hero-stage__background,
.hero-stage__slider,
.hero-stage__slide {
  position: absolute;
  inset: 0;
}

.hero-stage__background {
  z-index: 0;
}

.hero-stage__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(255, 204, 0, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(26, 28, 28, 0.78) 0%, rgba(26, 28, 28, 0.52) 38%, rgba(26, 28, 28, 0.4) 60%, rgba(26, 28, 28, 0.74) 100%);
}

.hero-stage__shell {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 480px;
}

.hero-stage__copy {
  display: grid;
  align-content: center;
  gap: 0;
  max-width: 42rem;
  min-height: 480px;
}

.hero-stage__eyebrow,
.contact-section__eyebrow {
  margin: 0 0 0.9rem;
  color: #745b00;
  font-family: "Open Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stage__eyebrow {
  color: #efe3bd;
}

.hero-stage__title {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 13ch;
}

.hero-stage__lead,
.contact-section__lead {
  margin: 1.2rem 0 0;
  color: #d7d0c1;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 52ch;
}

.contact-section__lead {
  max-width: 44rem;
  margin: 0 auto;
  color: #4e4632;
}

.hero-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero-stage__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.55rem;
  border-radius: 1rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-stage__button:hover,
.hero-stage__button:focus-visible {
  transform: translateY(-2px);
}

.hero-stage__button--primary {
  background: #ffcc00;
  color: #6f5700;
  box-shadow: 0 18px 34px rgba(255, 204, 0, 0.25);
}

.hero-stage__button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stage__dots {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.hero-stage__dot {
  width: 0.78rem;
  height: 0.78rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.hero-stage__dot.is-active {
  width: 2.25rem;
  background: #ffcc00;
}

.hero-stage__arrow {
  position: absolute;
  top: 48%;
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-stage__arrow:hover,
.hero-stage__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.04);
}

.hero-stage__arrow .material-symbols-outlined {
  font-size: 1.55rem;
}

.hero-stage__arrow--prev {
  left: 1rem;
}

.hero-stage__arrow--next {
  right: 1rem;
}

.hero-stage__slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-stage__slide.is-active {
  opacity: 1;
}

.hero-stage__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 18px;
  background: #ffcc00;
  color: #544600;
  box-shadow: 0 18px 32px rgba(112, 93, 0, 0.18);
  overflow: visible;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.floating-contact__item--whatsapp {
  background: #25d366;
  color: #ffffff;
}

.floating-contact__label {
  position: absolute;
  top: 0;
  right: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 58px;
  margin-right: 10px;
  padding: 0 18px;
  border-radius: 18px 0 0 18px;
  background: inherit;
  color: inherit;
  box-shadow: 0 18px 32px rgba(112, 93, 0, 0.18);
  font-family: "Open Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  transition: width 220ms ease, opacity 220ms ease;
}

.floating-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 26px;
  flex: 0 0 auto;
}

.floating-contact__item--whatsapp .floating-contact__icon {
  color: transparent;
  font-size: 0;
}

.floating-contact__item--whatsapp .floating-contact__icon::before {
  content: "";
  width: 26px;
  height: 26px;
  display: block;
  background: url("https://cdn.simpleicons.org/whatsapp/ffffff") center / contain no-repeat;
}

.floating-contact__item:hover,
.floating-contact__item:focus-visible {
  transform: translateY(-2px);
}

.floating-contact__item:hover .floating-contact__label,
.floating-contact__item:focus-visible .floating-contact__label {
  opacity: 1;
  width: 176px;
}

.site-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.site-brand__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1c1c;
}

.site-brand__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #745b00;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand__logo {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-brand__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffcc00;
}

.footer-brand__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3f3f4;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .floating-contact {
  opacity: 0;
  pointer-events: none;
}

.experts-shell {
  position: relative;
}

.experts-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.experts-intro {
  max-width: 42rem;
  color: #4e4632;
  line-height: 1.75;
}

.experts-controls {
  display: flex;
  gap: 0.75rem;
}

.experts-nav {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid #d2c5ab;
  border-radius: 9999px;
  background: #ffffff;
  color: #745b00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(26, 28, 28, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.experts-nav:hover:not(:disabled) {
  background: #ffcc00;
  border-color: #ffcc00;
  color: #6f5700;
  transform: translateY(-2px);
}

.experts-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.experts-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.experts-carousel::-webkit-scrollbar {
  display: none;
}

.experts-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.experts-carousel.is-dragging .expert-card-ref__inner,
.experts-carousel.is-dragging img {
  pointer-events: none;
}

.expert-card-ref {
  scroll-snap-align: start;
}

.expert-card-ref__inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid #e7dbc2;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(26, 28, 28, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.expert-card-ref__inner::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.05rem;
  height: 1px;
  background: rgba(128, 118, 95, 0.22);
  z-index: 2;
}

.expert-card-ref__inner::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.05rem;
  height: 3px;
  border-radius: 9999px;
  background: #ffcc00;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: 3;
}

.expert-card-ref:hover .expert-card-ref__inner {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(26, 28, 28, 0.14);
}

.expert-card-ref:hover .expert-card-ref__inner::after,
.expert-card-ref:focus-within .expert-card-ref__inner::after {
  transform: scaleX(1);
}

.expert-card-ref__media {
  position: relative;
  aspect-ratio: 1 / 1.16;
  overflow: hidden;
  background: #1a1c1c;
}

.expert-card-ref__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 28, 28, 0) 10%, rgba(26, 28, 28, 0.22) 100%);
}

.expert-card-ref__body {
  padding: 1.6rem 1.4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ec 100%);
}

.expert-card-ref__body::before {
  content: "";
  display: block;
  width: 3.25rem;
  height: 0.25rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: #ffcc00;
}

.expert-card-ref__name {
  font-family: "Manrope", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1c1c;
  margin: 0 0 0.45rem;
}

.expert-card-ref__role {
  margin: 0;
  color: #4e4632;
  line-height: 1.65;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7dbc2 !important;
  border-radius: 1.25rem !important;
  background: #ffffff !important;
  box-shadow: 0 20px 40px rgba(26, 28, 28, 0.08) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.05rem;
  height: 1px;
  background: rgba(128, 118, 95, 0.22);
  z-index: 2;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.05rem;
  height: 3px;
  border-radius: 9999px;
  background: #ffcc00;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: 3;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(26, 28, 28, 0.14) !important;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article:hover::after {
  transform: scaleX(1);
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article > div:first-child {
  min-height: 116px;
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1.4rem 0.4rem;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article > div:first-child span {
  font-size: 3.4rem !important;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article > div:last-child {
  padding: 0.75rem 1.5rem 2rem !important;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article h3 {
  color: #1a1c1c;
  line-height: 1.35;
}

section.bg-surface-container-low.py-section-gap:not(.hidden) article p {
  line-height: 1.75;
}

.expert-chat-icon {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

@media (min-width: 768px) {
  .experts-carousel {
    grid-auto-columns: calc((100% - 1.5rem) / 2);
  }
}

@media (min-width: 1280px) {
  .experts-carousel {
    grid-auto-columns: calc((100% - 3rem) / 3);
  }
}

@media (max-width: 767px) {
  .experts-toolbar {
    align-items: stretch;
  }

  .experts-controls {
    justify-content: flex-end;
  }
}

.service-shell {
  width: min(calc(100% - 32px), 1200px);
  margin: 0 auto;
}

.service-hero-band {
  position: relative;
  overflow: hidden;
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 204, 0, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 243, 244, 0.92));
}

.service-hero-band::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 9999px;
  background: rgba(255, 204, 0, 0.1);
  filter: blur(8px);
}

.service-hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(210, 197, 171, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(26, 28, 28, 0.08);
}

.service-hero-card > div:first-child {
  display: grid;
  align-content: start;
}

.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #745b00;
  font-family: "Open Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-breadcrumb span:last-child {
  color: #4e4632;
}

.service-hero-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.service-hero-text {
  margin: 18px 0 0;
  max-width: 42rem;
  color: #4e4632;
  font-size: 1.06rem;
  line-height: 1.85;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(210, 197, 171, 0.9);
  border-radius: 9999px;
  background: #fbf7ec;
  color: #4e4632;
  font-size: 0.94rem;
  font-weight: 600;
}

.service-hero-figure {
  order: -1;
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  min-height: 320px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(180deg, #fdf8ea 0%, #f3f3f4 100%);
  border: 1px solid rgba(210, 197, 171, 0.8);
}

.service-hero-figure::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.22), rgba(255, 255, 255, 0));
}

.service-hero-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.service-content-section {
  padding: 28px 0 88px;
}

.service-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.service-richtext,
.service-panel {
  border: 1px solid rgba(210, 197, 171, 0.88);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(26, 28, 28, 0.06);
}

.service-richtext {
  padding: 30px;
}

.service-richtext p {
  margin: 0 0 18px;
  color: #4e4632;
  line-height: 1.9;
}

.service-richtext p:last-child {
  margin-bottom: 0;
}

.service-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 108px;
}

.service-panel {
  padding: 22px;
}

.service-panel__title {
  margin: 0 0 16px;
  color: #1a1c1c;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.service-page-links {
  display: grid;
  gap: 10px;
}

.service-page-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8f4e8;
  color: #2f3131;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.service-page-link:hover,
.service-page-link:focus-visible {
  background: #ffe08b;
  color: #6f5700;
  transform: translateX(3px);
}

.service-page-link.is-active {
  background: #ffcc00;
  color: #6f5700;
  font-weight: 700;
}

.service-contact-list {
  display: grid;
  gap: 12px;
}

.service-contact-list a,
.service-contact-list span {
  color: #4e4632;
  line-height: 1.7;
}

.service-cta-panel {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.18), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(210, 197, 171, 0.8);
}

.service-cta-panel p {
  margin: 0;
}

@media (max-width: 1023px) {
  .service-content-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .service-hero-band {
    padding-top: 32px;
  }

  .service-hero-card,
  .service-richtext,
  .service-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .service-hero-title {
    font-size: 2rem;
  }

  .service-hero-text,
  .service-richtext p {
    line-height: 1.8;
  }

  .service-hero-figure {
    min-height: 220px;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .floating-contact__item {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .floating-contact__label {
    height: 54px;
    font-size: 0.86rem;
  }

  .floating-contact__item:hover .floating-contact__label,
  .floating-contact__item:focus-visible .floating-contact__label {
    width: 160px;
  }

  .site-logo {
    width: 4.6rem;
    height: 4.6rem;
  }

  body > header {
    height: 4.15rem !important;
  }

  body > main {
    margin-top: 4.15rem !important;
  }

  .mobile-menu {
    inset: 4.15rem 0 0;
  }
}

@media (min-width: 768px) {
  body > main {
    margin-top: 0 !important;
  }
}

.services-showcase-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.services-showcase {
  display: grid;
  gap: 2.5rem;
}

.services-showcase__eyebrow,
.about-hero__eyebrow {
  margin: 0 0 0.9rem;
  color: #745b00;
  font-family: "Open Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-showcase__lead {
  max-width: 44rem;
  margin: 0 auto;
  color: #4e4632;
  line-height: 1.8;
}

.services-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-mini-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid #e7dbc2;
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(26, 28, 28, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-mini-card:hover,
.service-mini-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26, 28, 28, 0.1);
  border-color: rgba(255, 204, 0, 0.7);
}

.service-mini-card__icon,
.feature-pillar__icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 0, 0.14);
  color: #c79800;
  font-size: 1.9rem;
}

.service-mini-card h3,
.feature-pillar h3,
.about-copy h2 {
  margin: 0;
  color: #1a1c1c;
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-mini-card p,
.feature-pillar p,
.about-copy p,
.about-highlight p {
  margin: 0;
  color: #4e4632;
  line-height: 1.8;
}

.why-choose-us-section {
  padding-top: 0.75rem;
  padding-bottom: 4.75rem;
}

.feature-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.feature-pillar {
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding: 0.25rem 0;
}

.feature-pillar__icon {
  background: rgba(255, 204, 0, 0.18);
}

.about-page {
  padding-bottom: 4rem;
}

.blog-page {
  padding-bottom: 4rem;
}

.blog-article-hero {
  padding: 4.5rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 204, 0, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 243, 244, 0.92));
}

.blog-article-hero__card,
.blog-article-content,
.blog-article-sidecard,
.blog-related-card {
  border: 1px solid rgba(210, 197, 171, 0.9);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(26, 28, 28, 0.08);
}

.blog-article-hero__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
  padding: 1.5rem;
}

.blog-article-hero__copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 0.6rem 0.3rem;
}

.blog-article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: #4e4632;
  font-size: 0.92rem;
  line-height: 1.6;
}

.blog-article-breadcrumb a {
  color: #745b00;
  font-weight: 700;
}

.blog-article-hero__title {
  margin: 0;
  color: #1a1c1c;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
}

.blog-article-hero__lead {
  margin: 0;
  color: #4e4632;
  font-size: 1.02rem;
  line-height: 1.9;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-article-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 9999px;
  background: #fbf7ec;
  color: #4e4632;
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-article-cover {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  min-height: 320px;
  background: #1a1c1c;
}

.blog-article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 28, 28, 0.1), rgba(26, 28, 28, 0.36));
}

.blog-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.blog-article-content {
  padding: 2rem;
}

.blog-article-content h2 {
  margin: 2rem 0 0.9rem;
  color: #1a1c1c;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
}

.blog-article-content h2:first-child {
  margin-top: 0;
}

.blog-article-content p,
.blog-article-content li {
  color: #4e4632;
  font-size: 1rem;
  line-height: 1.9;
}

.blog-article-content ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.blog-article-sidecard {
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
  position: sticky;
  top: 6rem;
}

.blog-article-sidecard h3,
.blog-related-card h3 {
  margin: 0;
  color: #1a1c1c;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}

.blog-article-sidecard p,
.blog-related-card p {
  margin: 0;
  color: #4e4632;
  line-height: 1.8;
}

.blog-article-sidecard ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
  color: #4e4632;
  line-height: 1.75;
}

.blog-related-section {
  padding-top: 1rem;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.blog-related-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-related-card:hover,
.blog-related-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.7);
  box-shadow: 0 24px 48px rgba(26, 28, 28, 0.12);
}

.blog-related-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1c1c;
}

.blog-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-related-card:hover .blog-related-card__media img,
.blog-related-card:focus-within .blog-related-card__media img {
  transform: scale(1.04);
}

.blog-related-card__body {
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.about-hero {
  padding: 4.5rem 0 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 204, 0, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 243, 244, 0.92));
}

.about-hero__card,
.about-copy,
.about-highlights {
  border: 1px solid rgba(210, 197, 171, 0.9);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 56px rgba(26, 28, 28, 0.08);
}

.about-hero__card {
  padding: 2.2rem;
}

.about-hero__title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.about-hero__lead {
  max-width: 48rem;
  margin: 1.2rem 0 0;
  color: #4e4632;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-content {
  padding-top: 1.5rem;
}

.about-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.about-copy {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.about-highlights {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.about-highlight {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
  border-radius: 1.25rem;
  background: #fbf7ec;
}

.about-highlight span {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 0, 0.18);
  color: #c79800;
}

.about-highlight strong {
  color: #1a1c1c;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.contact-section {
  padding-bottom: 1.75rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: min(100%, 920px);
  margin: 0 auto 2rem;
}

.contact-info-card {
  padding: 1.5rem;
  border: 1px solid rgba(210, 197, 171, 0.6);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 36px rgba(26, 28, 28, 0.08);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-info-card .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 204, 0, 0.14);
  color: #c79800;
  font-size: 1.75rem;
}

.contact-info-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.contact-info-card p {
  margin: 0;
  color: #4e4632;
  line-height: 1.72;
}

.contact-info-card a {
  color: #745b00;
  font-weight: 700;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 152, 0, 0.36);
  box-shadow: 0 24px 42px rgba(112, 93, 0, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 203, 0.92));
}

.contact-layout {
  display: block;
}

.contact-form {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 1.9rem;
  border: 1px solid rgba(210, 197, 171, 0.7);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 236, 0.94));
  box-shadow: 0 22px 52px rgba(26, 28, 28, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.contact-form span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27, 28, 28, 0.6);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(210, 197, 171, 0.85);
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.95rem 1rem;
  color: #1a1c1c;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffcc00;
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit {
  width: 100%;
  min-height: 3.2rem;
  border: 0;
  border-radius: 1rem;
  background: #ffcc00;
  color: #6f5700;
  font-family: "Open Sans", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #f3bf00;
  box-shadow: 0 16px 30px rgba(255, 204, 0, 0.22);
  transform: translateY(-2px);
}

.contact-map-section {
  padding-top: 0;
}

.contact-map-panel {
  display: grid;
  gap: 1.4rem;
}

.contact-map-panel__copy {
  text-align: center;
}

.contact-map-panel__frame {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(210, 197, 171, 0.75);
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(26, 28, 28, 0.08);
}

.contact-map-panel__iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

#ekibimiz .experts-toolbar {
  display: none;
}

#ekibimiz .text-center h2:last-of-type {
  display: none;
}

#ekibimiz > .mt-12.text-center {
  display: none;
}

@media (max-width: 1023px) {
  .services-showcase__grid,
  .feature-pillars,
  .about-content__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-content__grid {
    grid-template-columns: 1fr;
  }

  .hero-stage__shell,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage__copy {
    min-height: auto;
  }

  .hero-stage__title {
    max-width: 13ch;
  }

  .contact-map-panel__frame,
  .contact-map-panel__iframe {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .services-showcase-section,
  .why-choose-us-section,
  .about-hero,
  .hero-stage {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .services-showcase__grid,
  .feature-pillars {
    grid-template-columns: 1fr;
  }

  .blog-article-hero__card,
  .blog-article-layout,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-sidecard {
    position: static;
  }

  .service-mini-card,
  .about-hero__card,
  .about-copy,
  .about-highlights,
  .contact-form {
    padding: 1.4rem;
  }

  .hero-stage__shell,
  .form-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage__copy {
    min-height: auto;
  }

  .hero-stage__title {
    max-width: none;
    font-size: 1.85rem;
  }

  .hero-stage__lead,
  .hero-stage__actions,
  .hero-stage__dots {
    margin-top: 1.1rem;
  }

  .hero-stage__actions {
    flex-direction: column;
  }

  .hero-stage__button {
    width: 100%;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-stage__arrow {
    display: none;
  }

  .experts-controls {
    display: none;
  }

  .contact-map-panel__frame,
  .contact-map-panel__iframe {
    min-height: 300px;
  }
}
