:root {
  --ink: #0f172a;
  --muted: #475569;
  --muted-light: #64748b;
  --navy: #061a33;
  --navy-2: #0b2341;
  --navy-3: #102f54;
  --blue: #1769aa;
  --blue-2: #2b7fd3;
  --blue-3: #4a90e2;
  --blue-soft: #ddeeff;
  --blue-pale: #f1f7ff;
  --paper: #fcfaf4;
  --paper-2: #f6f1e8;
  --white: #ffffff;
  --line: rgba(6, 26, 51, 0.14);
  --line-strong: rgba(6, 26, 51, 0.24);
  --focus: #2b7fd3;
  --shadow-sm: 0 8px 22px rgba(6, 26, 51, 0.07);
  --shadow-md: 0 18px 45px rgba(6, 26, 51, 0.13);
  --shadow-lg: 0 34px 90px rgba(6, 26, 51, 0.18);
  --radius-sm: 13px;
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1140px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button {
  font-family: "Manrope", Arial, sans-serif;
}

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

button {
  border: 0;
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 5px;
}

.svg-sprite {
  position: absolute;
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 10px 15px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--focus);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-note {
  background: #04111f;
  color: #d8e6f8;
  font-size: 13px;
  font-weight: 700;
}

.top-note .container {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.top-note strong {
  color: var(--white);
}

.top-note-separator {
  color: var(--blue-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(220, 238, 255, 0.14);
  background: rgba(7, 26, 47, 0.94);
  backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow 0.3s, background-color 0.3s;
}

.site-header.scrolled {
  background: rgba(7, 26, 47, 0.98);
  box-shadow: 0 14px 34px rgba(4, 17, 31, 0.3);
}

.header-row {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
}

.logo img {
  width: 188px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 28px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #c9d8ea;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.18s;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue-2));
  content: "";
  transition: width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
}

.mobile-menu .container {
  display: grid;
  padding: 12px 0 18px;
}

.mobile-menu a {
  min-height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dbe3f0;
  font-size: 15px;
  font-weight: 600;
  line-height: 50px;
}

.mobile-menu a.active {
  color: var(--white);
}

.mobile-menu .btn {
  margin-top: 14px;
  border-bottom: 0;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-3) 0%, var(--blue-2) 44%, var(--blue) 100%);
  box-shadow: 0 10px 24px rgba(23, 105, 170, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(43, 127, 211, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 15.5px;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue-2));
  box-shadow: 0 0 0 4px rgba(220, 238, 255, 0.42);
  content: "";
}

.eyebrow-light {
  color: var(--blue-soft);
}

.feedback-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 132px) 0 clamp(86px, 11vw, 144px);
  background:
    radial-gradient(circle at 78% 24%, rgba(74, 144, 226, 0.27), transparent 34%),
    linear-gradient(135deg, #04172c 0%, var(--navy) 48%, #0e3158 100%);
  color: #dce8f6;
}

.feedback-hero::before {
  position: absolute;
  top: 0;
  right: 7%;
  bottom: 0;
  width: min(48vw, 690px);
  border-right: 1px solid rgba(221, 238, 255, 0.1);
  border-left: 1px solid rgba(221, 238, 255, 0.1);
  transform: skewX(-8deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(74, 144, 226, 0.06));
  content: "";
}

.feedback-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(221, 238, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 238, 255, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.feedback-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.45fr);
  align-items: end;
  gap: clamp(48px, 9vw, 122px);
}

.feedback-hero-copy {
  max-width: 770px;
}

.feedback-hero h1,
.gallery-intro h2,
.closing-panel h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.feedback-hero h1 {
  max-width: 10ch;
  margin-top: 20px;
  color: var(--white);
  font-size: clamp(3.25rem, 7.4vw, 6.5rem);
  line-height: 0.94;
  text-wrap: balance;
}

.feedback-hero-copy > p {
  max-width: 60ch;
  margin-top: 28px;
  color: #c8d8ea;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.feedback-hero-mark {
  display: grid;
  align-content: end;
  justify-items: end;
  padding-bottom: 8px;
  color: var(--blue-soft);
}

.quote-mark {
  height: 112px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
}

.mark-rule {
  width: 100%;
  height: 1px;
  margin: 4px 0 16px;
  background: linear-gradient(90deg, transparent, rgba(221, 238, 255, 0.58));
}

.feedback-gallery-section {
  position: relative;
  padding: clamp(76px, 10vw, 120px) 0 clamp(88px, 11vw, 138px);
  background:
    radial-gradient(circle at 8% 10%, rgba(221, 238, 255, 0.72), transparent 27%),
    linear-gradient(180deg, #fffdf8, var(--paper) 55%, #f8f4eb);
}

.feedback-gallery-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  content: "";
  opacity: 0.45;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(32px, 8vw, 106px);
  margin-bottom: clamp(48px, 7vw, 76px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-strong);
}

.gallery-intro h2 {
  max-width: 13ch;
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1;
  text-wrap: balance;
}

.gallery-intro > p {
  max-width: 42ch;
  padding-left: 24px;
  border-left: 2px solid var(--blue-2);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.feedback-gallery {
  column-count: 3;
  column-gap: clamp(20px, 2.4vw, 30px);
  column-fill: balance;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  width: 100%;
  margin: 0 0 clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  break-inside: avoid;
  page-break-inside: avoid;
  padding: clamp(12px, 1.7vw, 18px);
  border: 1px solid rgba(74, 144, 226, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(74, 144, 226, 0.16), transparent 30%),
    linear-gradient(145deg, var(--navy-3), var(--navy) 72%);
  box-shadow:
    0 26px 64px rgba(6, 26, 51, 0.22),
    inset 0 1px 0 rgba(159, 208, 255, 0.1);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 4px 13px;
}

.review-label {
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.review-image-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(221, 238, 255, 0.16);
  border-radius: calc(var(--radius-lg) - 7px);
  background:
    linear-gradient(rgba(221, 238, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 238, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, var(--navy), var(--navy-2) 62%, var(--navy-3));
  background-size: 34px 34px, 34px 34px, auto;
  color: inherit;
  font: inherit;
  text-align: left;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.review-image-stage picture {
  display: block;
  width: 100%;
}

.review-image-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  border: 1px solid rgba(74, 144, 226, 0.34);
  border-radius: 16px;
  background: #0d1218;
  box-shadow: 0 24px 52px rgba(0, 10, 23, 0.34);
  object-fit: contain;
  transition: filter 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    border-color: rgba(117, 185, 255, 0.68);
    transform: translateY(-4px);
    box-shadow:
      0 32px 72px rgba(6, 26, 51, 0.27),
      inset 0 1px 0 rgba(159, 208, 255, 0.15);
  }

  .review-card:hover .review-image-stage {
    border-color: rgba(159, 208, 255, 0.56);
    box-shadow: 0 16px 34px rgba(0, 9, 21, 0.24);
  }

  .review-card:hover .review-image-stage img {
    filter: brightness(1.035) saturate(1.035);
  }
}

@media (max-width: 1199px) {
  .feedback-gallery {
    column-count: 2;
  }
}

.closing-section {
  padding: clamp(72px, 9vw, 108px) 0;
  background: var(--paper-2);
}

.closing-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(36px, 8vw, 96px);
  overflow: hidden;
  padding: clamp(38px, 6vw, 68px);
  border: 1px solid rgba(221, 238, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 15%, rgba(74, 144, 226, 0.28), transparent 25%),
    linear-gradient(135deg, #04172c, var(--navy) 54%, #0c2d50);
  box-shadow: var(--shadow-lg);
  color: #cbd9e9;
}

.closing-panel::before {
  position: absolute;
  right: -76px;
  bottom: -130px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(221, 238, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(221, 238, 255, 0.025), 0 0 0 88px rgba(221, 238, 255, 0.018);
  content: "";
}

.closing-copy {
  position: relative;
  z-index: 1;
}

.closing-panel h2 {
  max-width: 12ch;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1;
  text-wrap: balance;
}

.closing-panel p {
  max-width: 57ch;
  margin-top: 18px;
  font-size: 1.03rem;
  line-height: 1.7;
}

.closing-panel .btn {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  background: var(--navy);
  color: #b7c7da;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue), var(--blue-2));
  content: "";
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(180px, 0.65fr) minmax(300px, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 70px);
  padding: 54px 0 38px;
}

.footer-logo {
  width: 200px;
  height: auto;
}

.footer-grid p {
  max-width: 44ch;
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.75;
}

.footer-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #c5d5e8;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: var(--blue-soft);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--blue-soft);
}

.footer-contact-link .wa-icon {
  color: #1fae5b;
}

.footer-address-block,
.footer-follow {
  margin-top: 22px;
}

.footer-address {
  display: grid;
  gap: 2px;
  margin-top: 12px;
  color: #c5d5e8;
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  transition: border-color 0.18s, background-color 0.18s, transform 0.18s;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 208, 255, 0.68);
  background: rgba(74, 144, 226, 0.14);
}

.socials svg {
  width: 19px;
  height: 19px;
}

.ethics {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ethics-row {
  padding: 22px 0 26px;
}

.footer-disclaimer {
  max-width: 92ch;
  color: #c2cfde;
  font-size: 13.5px;
  line-height: 1.65;
}

.copyright {
  margin-top: 12px;
  color: #9fb0c4;
  font-size: 13px;
}

.footer-credit a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(159, 208, 255, 0.65);
  text-underline-offset: 3px;
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-2), var(--blue) 60%, var(--navy-2));
  box-shadow: 0 14px 28px rgba(7, 26, 47, 0.24), 0 0 0 0 rgba(47, 128, 237, 0.34);
  color: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 2.8s ease-out infinite;
}

.float-whatsapp::before {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(47, 128, 237, 0.34);
  border-radius: inherit;
  content: "";
  opacity: 0.7;
  animation: waRing 2.8s ease-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 18px 36px rgba(7, 26, 47, 0.3), 0 0 0 8px rgba(47, 128, 237, 0.12);
}

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

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 14px 28px rgba(7, 26, 47, 0.24), 0 0 0 0 rgba(47, 128, 237, 0.24);
  }

  50% {
    box-shadow: 0 18px 36px rgba(7, 26, 47, 0.28), 0 0 0 10px rgba(47, 128, 237, 0);
  }
}

@keyframes waRing {
  0% {
    transform: scale(0.9);
    opacity: 0.72;
  }

  70%, 100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .site-header .header-row > .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .feedback-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.3fr);
    gap: 34px;
  }

  .gallery-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .gallery-intro > p {
    max-width: 58ch;
  }

  .closing-panel {
    grid-template-columns: 1fr;
  }

  .closing-panel .btn {
    justify-self: start;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .top-note .container {
    min-height: 40px;
    gap: 5px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .top-note strong {
    width: 100%;
    margin-bottom: -3px;
  }

  .header-row {
    min-height: 66px;
  }

  .logo img {
    width: 168px;
  }

  .feedback-hero {
    padding: 68px 0 78px;
  }

  .feedback-hero::before {
    right: -26%;
    width: 88vw;
  }

  .feedback-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feedback-hero h1 {
    max-width: none;
    font-size: clamp(3.3rem, 15vw, 5.1rem);
  }

  .feedback-hero-copy > p {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .feedback-hero-mark {
    grid-template-columns: auto minmax(60px, 1fr);
    align-items: center;
    justify-items: start;
    gap: 14px;
  }

  .quote-mark {
    height: 68px;
    font-size: 6.4rem;
  }

  .mark-rule {
    width: 100%;
    margin: 0;
  }

  .feedback-gallery-section {
    padding: 68px 0 82px;
  }

  .gallery-intro {
    margin-bottom: 36px;
    padding-bottom: 26px;
  }

  .gallery-intro h2 {
    max-width: 14ch;
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .gallery-intro > p {
    padding-left: 18px;
    font-size: 0.94rem;
  }

  .feedback-gallery {
    column-count: 1;
  }

  .review-card {
    grid-template-rows: auto auto;
    padding: 12px;
    border-radius: 23px;
  }

  .review-card-header {
    padding: 3px 2px 15px;
  }

  .review-image-stage {
    min-height: 0;
    padding: 6px;
    border-radius: 18px;
  }

  .review-image-stage img {
    width: 100%;
    max-height: none;
    border-radius: 13px;
  }

  .closing-section {
    padding: 62px 0;
  }

  .closing-panel {
    gap: 30px;
    padding: 32px 24px;
    border-radius: 25px;
  }

  .closing-panel h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

  .closing-panel p {
    font-size: 0.98rem;
  }

  .closing-panel .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 30px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-logo {
    width: 176px;
  }

  .footer-grid p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .footer-address-block,
  .footer-follow {
    margin-top: 18px;
  }

  .float-whatsapp {
    display: none;
  }
}

@media (max-width: 400px) {
  .top-note-separator {
    display: none;
  }

  .top-note span:last-child {
    padding-left: 3px;
  }

  .review-card {
    padding: 10px;
  }

  .review-image-stage {
    padding: 5px;
  }

  .review-label {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .review-card:hover {
    transform: none;
  }
}
