:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: #151515;
  --text: #f4f0e8;
  --muted: #c8bfae;
  --gold: #bb9457;
  --gold-strong: #d5ae6d;
  --line: rgba(213, 174, 109, 0.2);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% 10%, #1a160f 0%, transparent 35%),
    radial-gradient(circle at 90% 80%, #1a160f 0%, transparent 30%), var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section--alt {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.01), rgba(213, 174, 109, 0.06));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ambient-glow {
  position: fixed;
  width: 38vmax;
  height: 38vmax;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.28;
  z-index: -1;
}

.ambient-glow--one {
  background: #9c7a48;
  top: -10vmax;
  left: -12vmax;
}

.ambient-glow--two {
  background: #5d4c2f;
  right: -12vmax;
  bottom: -12vmax;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid var(--line);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.05;
}

.brand__logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
}

.brand__text {
  display: inline-flex;
  flex-direction: column;
}

.brand__name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  padding-top: 52px;
  padding-bottom: 60px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.eyebrow {
  margin: 0;
  color: var(--gold-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 14px 0 16px;
}

h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--text), #cccccc 15%);
}

.hero__content p {
  font-size: 0.96rem;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.36s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.05);
}

.btn::after,
.contact-links a::after,
.footer__buttons a::after,
.menu-toggle::after,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    120px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.btn:hover::after,
.contact-links a:hover::after,
.footer__buttons a:hover::after,
.menu-toggle:hover::after,
.whatsapp-float:hover::after {
  opacity: 1;
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-strong));
  color: #100d09;
  box-shadow: 0 10px 28px rgba(187, 148, 87, 0.35);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
}

.hero-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.02), rgba(213, 174, 109, 0.08));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.hero-card li {
  position: relative;
  padding-left: 20px;
}

.hero-card li::before {
  content: "";
  width: 4px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.6em;
}

.hero-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metric-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(17, 17, 17, 0.9), rgba(187, 148, 87, 0.09));
}

.hero-metric-card strong {
  display: block;
  color: var(--gold-strong);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.hero-metric-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 380px;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stats {
  display: grid;
  gap: 16px;
}

.stat-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-strong);
  font-size: 1.04rem;
}

.office-carousel {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.62);
  overflow: hidden;
  padding: 14px;
}

.office-carousel__track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: office-carousel-right 60s linear infinite;
}

.office-carousel__item {
  margin: 0;
  width: clamp(180px, 20vw, 260px);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(213, 174, 109, 0.28);
  flex-shrink: 0;
  background: #0e0e0e;
}

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

.service-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 174, 109, 0.55);
}

.service-card h3 {
  margin-top: 0;
}

.section--contact {
  padding-top: 82px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  background: linear-gradient(140deg, rgba(17, 17, 17, 0.96), rgba(187, 148, 87, 0.1));
  box-shadow: var(--shadow);
}

.contact-links {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-links a,
.footer__buttons a {
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--muted);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.36s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-links a:hover,
.footer__buttons a:hover {
  border-color: rgba(213, 174, 109, 0.65);
  color: var(--gold-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.menu-toggle,
.whatsapp-float {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.36s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-toggle span {
  position: relative;
  z-index: 1;
}

.footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 12%, rgba(187, 148, 87, 0.14), transparent 40%),
    radial-gradient(circle at 90% 88%, rgba(187, 148, 87, 0.1), transparent 38%),
    rgba(0, 0, 0, 0.58);
}

.footer__main {
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(580px, 2fr);
  gap: 32px;
  align-items: flex-start;
}

.footer__brand-block {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(140deg, rgba(17, 17, 17, 0.9), rgba(187, 148, 87, 0.08));
  display: grid;
  align-content: start;
  gap: 10px;
  height: fit-content;
  width: 100%;
}

.footer__brand {
  margin: 0;
  display: inline-flex;
}

.footer__brand-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(213, 174, 109, 0.5);
  color: var(--gold-strong);
  padding: 10px 16px;
  font-weight: 700;
  transition: border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  width: fit-content;
}

.footer__cta:hover {
  border-color: rgba(213, 174, 109, 0.8);
  color: #f3d8a8;
  transform: translateY(-2px);
}

.footer__cols-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer__col h3 {
  margin: 0;
  font-size: 1.04rem;
  color: var(--gold-strong);
  font-weight: 700;
}

.footer__link {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.25s ease, transform 0.25s ease;
  width: fit-content;
}

.footer__link:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.footer-contact__item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact__item:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-contact__item--static {
  pointer-events: none;
  cursor: default;
}

.footer-contact__item--static:hover {
  transform: none;
}

.footer-contact__item span {
  line-height: 1.4;
}

.footer-contact__map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(213, 174, 109, 0.45);
  color: var(--gold-strong);
  font-size: 0.88rem;
  font-weight: 700;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: fit-content;
}

.footer-contact__map:hover {
  border-color: rgba(213, 174, 109, 0.75);
  color: #f3d8a8;
  transform: translateX(3px);
}

.footer__social {
  display: grid;
  gap: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.25s ease, transform 0.25s ease;
  width: fit-content;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer__social-link:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer__hours {
  display: grid;
  gap: 4px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(213, 174, 109, 0.25);
}

.footer__hours span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--muted), #ffffff 10%);
  line-height: 1.4;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer__bottom-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom-content p {
  margin: 0;
  font-size: 0.86rem;
  color: color-mix(in srgb, var(--muted), #f0e5d0 14%);
}

.security-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.security-modal.is-open {
  display: flex;
}

.security-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.security-modal__content {
  position: relative;
  background: linear-gradient(140deg, rgba(17, 17, 17, 0.98), rgba(187, 148, 87, 0.1));
  border: 1px solid rgba(231, 76, 60, 0.5);
  border-radius: 24px;
  padding: 32px;
  max-width: 540px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: slideIn 0.3s ease;
}

.security-modal__content::-webkit-scrollbar {
  width: 8px;
}

.security-modal__content::-webkit-scrollbar-track {
  background: rgba(213, 174, 109, 0.05);
  border-radius: 10px;
}

.security-modal__content::-webkit-scrollbar-thumb {
  background: rgba(231, 76, 60, 0.3);
  border-radius: 10px;
}

.security-modal__content::-webkit-scrollbar-thumb:hover {
  background: rgba(231, 76, 60, 0.5);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.security-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  color: #e74c3c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.security-modal__close:hover {
  background: rgba(231, 76, 60, 0.2);
  transform: rotate(90deg);
}

.security-modal__close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.security-modal__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.security-modal__icon {
  width: 32px;
  height: 32px;
  fill: #e74c3c;
  flex-shrink: 0;
}

.security-modal__header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #e74c3c;
  letter-spacing: -0.02em;
}

.security-modal__body {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.security-modal__warning {
  margin: 0;
  padding: 12px 14px;
  background: rgba(231, 76, 60, 0.15);
  border-left: 3px solid #e74c3c;
  color: var(--text);
  font-size: 0.95rem;
}

.security-modal__section {
  display: grid;
  gap: 8px;
}

.security-modal__section h3 {
  margin: 0;
  font-size: 1.04rem;
  color: var(--gold-strong);
}

.security-modal__section p {
  margin: 0;
  color: color-mix(in srgb, var(--text), #d0d0d0 8%);
  font-size: 0.92rem;
  line-height: 1.6;
}

.security-modal__section ul {
  margin: 0;
  padding-left: 20px;
  color: color-mix(in srgb, var(--text), #d0d0d0 8%);
  font-size: 0.92rem;
}

.security-modal__section li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.security-modal__section--alert {
  padding: 14px;
  background: rgba(231, 76, 60, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.security-modal__section--alert h3 {
  color: #e74c3c;
}

.security-modal__section--alert p {
  color: #fdd9d5;
}

.security-modal__footer {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(213, 174, 109, 0.2);
  color: color-mix(in srgb, var(--muted), #ffffff 8%);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.6;
}

.security-modal__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.security-modal__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.security-modal__action:active {
  transform: translateY(0);
}

.security-float {
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(231, 76, 60, 0.45);
  z-index: 60;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse-security 2.2s infinite;
}

.security-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(231, 76, 60, 0.55);
}

.security-float:active {
  transform: translateY(-2px) scale(0.98);
}

.security-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes pulse-security {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22c15e;
  color: #fff;
  box-shadow: 0 12px 28px rgba(34, 193, 94, 0.45);
  z-index: 60;
  transition: transform 0.25s ease;
  animation: pulse 2.2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.reviews {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.97), rgba(187, 148, 87, 0.1));
  box-shadow: var(--shadow);
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.reviews__cta {
  flex-shrink: 0;
}

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

.review-summary-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 11, 11, 0.7);
  padding: 14px;
}

.review-summary-card span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.review-summary-card strong {
  color: var(--gold-strong);
  font-size: 1.22rem;
}

.reviews__status {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reviews__grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(10, 10, 10, 0.72);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.review-card__identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(140deg, rgba(187, 148, 87, 0.18), rgba(17, 17, 17, 0.95));
  position: relative;
}

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

.review-card__avatar-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--gold-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.review-card__avatar.is-empty img {
  display: none;
}

.review-card__avatar.is-empty .review-card__avatar-fallback {
  display: flex;
}

.review-card__author {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__stars {
  color: #f6c75f;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
}

.review-card p {
  margin: 0;
  color: color-mix(in srgb, var(--text), #cfcfcf 13%);
  font-size: 0.92rem;
}

.review-card time {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.faq {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.97), rgba(187, 148, 87, 0.08));
  box-shadow: var(--shadow);
}

.faq__intro {
  max-width: 74ch;
  margin-bottom: 18px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 11, 11, 0.7);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 46px 16px 18px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  transition: color 0.22s ease;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-strong);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__item[open] summary {
  color: var(--gold-strong);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.28s ease, opacity 0.22s ease;
}

.faq__item[open] .faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq__answer p {
  margin: 0;
  padding: 0 18px 16px;
  color: color-mix(in srgb, var(--text), #cfcfcf 13%);
  font-size: 0.92rem;
  overflow: hidden;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 193, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(34, 193, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 193, 94, 0);
  }
}

@keyframes office-carousel-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1060px) {
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero__grid,
  .two-col,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .hero-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .topbar__content {
    min-height: 68px;
  }

  .brand__logo {
    width: 50px;
    height: 50px;
  }

  .brand__name {
    font-size: 1.35rem;
  }

  .brand__sub {
    font-size: 0.68rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 68px;
    right: 4vw;
    width: min(240px, 92vw);
    background: #0d0d0d;
    border: 1px solid var(--line);
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .hero__content p,
  .hero-card li {
    font-size: 0.92rem;
  }

  .hero-card {
    padding: 20px;
  }
}

@media (max-width: 580px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    max-width: 100%;
  }

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

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .reviews {
    padding: 22px;
  }

  .faq {
    padding: 22px;
  }

  .reviews__header {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews__summary,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .office-carousel {
    padding: 10px;
  }

  .office-carousel__item {
    width: clamp(150px, 55vw, 220px);
  }

  .footer__main {
    padding-top: 24px;
  }

  .footer__brand-block {
    padding: 14px;
  }

  .footer__cols-wrapper {
    gap: 18px;
  }

  .footer__bottom-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .security-modal__content {
    padding: 24px 20px;
    max-width: 90vw;
    border-radius: 18px;
  }

  .security-modal__header h2 {
    font-size: 1.2rem;
  }

  .security-modal__body {
    gap: 14px;
  }

  .security-modal__section h3 {
    font-size: 0.95rem;
  }

  .security-modal__section p,
  .security-modal__section ul {
    font-size: 0.88rem;
  }

  .security-float {
    width: 52px;
    height: 52px;
    bottom: 80px;
  }

  .security-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
