:root {
  --navy: #061b2f;
  --navy-2: #082840;
  --ocean: #0d3f56;
  --blue-mist: #e8eef2;
  --gold: #b3945b;
  --gold-2: #d6c28d;
  --ivory: #f8f5ee;
  --white: #ffffff;
  --ink: #101820;
  --muted: rgba(16, 24, 32, 0.68);
  --line: rgba(16, 24, 32, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(6, 27, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 27, 47, 0.94);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
}

.nav-logo {
  width: clamp(130px, 14vw, 178px);
  min-width: 130px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-color: var(--gold-2);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  cursor: pointer;
  list-style: none;
}

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

.nav-dropdown summary::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown[open] summary,
.nav-dropdown.is-current summary {
  color: var(--white);
  border-color: var(--gold-2);
}

.nav-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 16px);
  left: 50%;
  display: grid;
  width: max-content;
  min-width: 260px;
  border: 1px solid rgba(214, 194, 141, 0.22);
  padding: 10px;
  background: rgba(6, 27, 47, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.nav-menu::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.nav-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-menu a:last-child {
  border-bottom: 0;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--white);
  border-color: rgba(214, 194, 141, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.language-switcher {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 68px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--navy);
  background: var(--gold-2);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 950;
  list-style: none;
}

.language-trigger::-webkit-details-marker {
  display: none;
}

.language-trigger::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.language-switcher[open] .language-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.language-panel {
  position: absolute;
  z-index: 70;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  border: 1px solid rgba(214, 194, 141, 0.22);
  padding: 8px;
  background: rgba(6, 27, 47, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.language-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
}

.language-panel button span:last-child {
  color: var(--gold-2);
  font-size: 0.72rem;
}

.language-panel button:hover,
.language-panel button:focus,
.language-panel button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(214, 194, 141, 0.54);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 194, 141, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(6, 27, 47, 0.16);
}

.social-logo::before {
  display: block;
  width: 19px;
  height: 19px;
  content: "";
  background: var(--gold-2);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.social-facebook::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h2V5h-2c-2.2 0-4 1.8-4 4v2H8v3h2v7h3v-7h2.4l.6-3h-3V9c0-.6.4-1 1-1Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h2V5h-2c-2.2 0-4 1.8-4 4v2H8v3h2v7h3v-7h2.4l.6-3h-3V9c0-.6.4-1 1-1Z'/%3E%3C/svg%3E");
}

.social-instagram::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37Z'/%3E%3Cpath d='M17.5 6.5h.01'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37Z'/%3E%3Cpath d='M17.5 6.5h.01'/%3E%3C/svg%3E");
}

.social-line::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3C6.48 3 2 6.65 2 11.15c0 2.91 1.9 5.46 4.75 6.9l-.62 2.32c-.14.52.43.93.87.62l2.74-1.92c.72.14 1.48.21 2.26.21 5.52 0 10-3.65 10-8.13S17.52 3 12 3Zm-4.15 9.78H5.6V8.7h.95v3.23h1.3v.85Zm1.78 0h-.95V8.7h.95v4.08Zm4.08 0h-.86l-1.58-2.27v2.27h-.94V8.7h.86l1.58 2.29V8.7h.94v4.08Zm3.44-3.25h-1.5v.76h1.34v.8h-1.34v.86h1.5v.83H14.7V8.7h2.45v.83Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3C6.48 3 2 6.65 2 11.15c0 2.91 1.9 5.46 4.75 6.9l-.62 2.32c-.14.52.43.93.87.62l2.74-1.92c.72.14 1.48.21 2.26.21 5.52 0 10-3.65 10-8.13S17.52 3 12 3Zm-4.15 9.78H5.6V8.7h.95v3.23h1.3v.85Zm1.78 0h-.95V8.7h.95v4.08Zm4.08 0h-.86l-1.58-2.27v2.27h-.94V8.7h.86l1.58 2.29V8.7h.94v4.08Zm3.44-3.25h-1.5v.76h1.34v.8h-1.34v.86h1.5v.83H14.7V8.7h2.45v.83Z'/%3E%3C/svg%3E");
}

.social-logo:hover,
.social-logo:focus {
  border-color: var(--gold-2);
  background: rgba(214, 194, 141, 0.16);
  transform: translateY(-1px);
}

.social-logo:hover::before,
.social-logo:focus::before {
  background: var(--white);
}

.social-links-nav {
  flex: 0 0 auto;
}

.whatsapp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(6, 27, 47, 0.18);
}

.whatsapp-logo::before {
  display: block;
  width: 25px;
  height: 25px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M16.001 3.2c-7.062 0-12.8 5.738-12.8 12.8 0 2.258.591 4.462 1.713 6.405L3.2 28.8l6.559-1.681A12.743 12.743 0 0 0 16 28.8c7.062 0 12.8-5.738 12.8-12.8S23.063 3.2 16.001 3.2Zm0 23.284c-2.108 0-4.063-.623-5.706-1.695l-.409-.266-3.892.997 1.039-3.792-.286-.429A10.41 10.41 0 0 1 5.517 16c0-5.779 4.704-10.483 10.484-10.483 5.779 0 10.482 4.704 10.482 10.483S21.78 26.484 16 26.484Zm5.749-7.844c-.315-.158-1.864-.92-2.153-1.025-.289-.105-.499-.158-.709.158-.21.315-.814 1.025-.998 1.235-.184.21-.368.236-.683.079-.315-.158-1.33-.49-2.534-1.563-.936-.835-1.568-1.866-1.752-2.181-.184-.315-.02-.486.138-.643.142-.141.315-.368.473-.552.158-.184.21-.315.315-.525.105-.21.053-.394-.026-.552-.079-.158-.709-1.707-.972-2.337-.256-.614-.516-.531-.709-.541l-.604-.011c-.21 0-.552.079-.84.394-.289.315-1.103 1.078-1.103 2.626s1.129 3.045 1.286 3.255c.158.21 2.222 3.392 5.384 4.758.753.325 1.34.519 1.797.664.755.24 1.443.206 1.986.125.606-.09 1.864-.762 2.127-1.498.263-.736.263-1.367.184-1.498-.079-.131-.289-.21-.604-.368Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.whatsapp-logo:hover {
  transform: translateY(-1px);
  background: #1fc45d;
}

.nav-whatsapp {
  flex: 0 0 auto;
}

.mobile-menu {
  position: relative;
  display: none !important;
  flex: 0 0 auto;
}

.mobile-menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(214, 194, 141, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  list-style: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mobile-menu-trigger::-webkit-details-marker {
  display: none;
}

.mobile-menu-trigger span {
  width: 19px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--gold-2);
}

.mobile-menu[open] .mobile-menu-trigger {
  border-color: var(--gold-2);
  background: rgba(214, 194, 141, 0.16);
}

.mobile-menu-panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(276px, calc(100vw - 32px));
  border: 1px solid rgba(214, 194, 141, 0.24);
  padding: 10px;
  background: rgba(6, 27, 47, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.mobile-menu-panel a,
.mobile-menu-label {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
}

.mobile-menu-panel a {
  color: rgba(255, 255, 255, 0.78);
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus,
.mobile-menu-panel a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.mobile-menu-label {
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
}

.mobile-social-links {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
}

.mobile-menu-panel a.social-logo {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 194, 141, 0.42);
  border-radius: 50%;
  padding: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
}

.floating-line {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-color: rgba(255, 255, 255, 0.16);
  background: #06c755;
  box-shadow: 0 14px 34px rgba(6, 27, 47, 0.18);
}

.floating-line::before {
  width: 25px;
  height: 25px;
  background: var(--white);
}

.floating-line:hover,
.floating-line:focus {
  background: #05b84e;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 82svh;
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: brightness(1.12) saturate(0.96) contrast(1.02);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 27, 47, 0.9) 0%, rgba(6, 27, 47, 0.58) 42%, rgba(6, 27, 47, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 27, 47, 0.66) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(82svh - 82px);
  margin: 0 auto;
  padding: clamp(76px, 13svh, 140px) 0 clamp(42px, 7svh, 72px);
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.2vw, 6.8rem);
  line-height: 0.95;
  overflow-wrap: normal;
  hyphens: none;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  line-height: 1;
}

h3 {
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

.button-primary {
  color: var(--navy);
  background: var(--white);
}

.button-primary:hover {
  background: var(--blue-mist);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: var(--gold-2);
}

.button-gold {
  color: var(--navy);
  background: var(--gold-2);
}

.button-outline-dark {
  color: var(--navy);
  border-color: var(--line);
  background: transparent;
}

.button-outline-dark:hover {
  border-color: var(--gold);
  background: rgba(179, 148, 91, 0.08);
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(22px, 3vw, 32px);
  background: rgba(6, 27, 47, 0.62);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.hero-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.hero-card a {
  color: var(--white);
  border-bottom: 1px solid rgba(214, 194, 141, 0.55);
  overflow-wrap: anywhere;
}

.contact-social-line {
  display: grid;
  gap: 5px;
}

.page-hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.page-hero .hero-content {
  min-height: 440px;
  padding-top: clamp(58px, 9svh, 98px);
  padding-bottom: clamp(52px, 8svh, 84px);
}

.section {
  padding: clamp(70px, 10vw, 126px) 0;
}

.section-tight {
  padding: clamp(50px, 7vw, 88px) 0;
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-ocean {
  color: var(--white);
  background: var(--ocean);
}

.section-white {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-navy .section-heading p,
.section-ocean .section-heading p,
.section-navy .card p,
.section-ocean .card p {
  color: rgba(255, 255, 255, 0.72);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

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

.trial-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.card {
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
}

.section-navy .card,
.section-ocean .card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.section-navy .card h3,
.section-ocean .card h3 {
  color: var(--white);
}

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

.info-grid {
  align-items: start;
}

.info-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.info-card[open] {
  border-color: rgba(179, 148, 91, 0.55);
  box-shadow: 0 18px 44px rgba(6, 27, 47, 0.06);
}

.info-card summary {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  cursor: pointer;
  list-style: none;
}

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

.info-card summary::after {
  justify-self: start;
  content: "View details";
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card[open] summary::after {
  content: "Hide details";
}

html[lang="fr"] .info-card summary::after,
html[lang="fr"] .service-card summary::after {
  content: "Voir les details";
}

html[lang="fr"] .info-card[open] summary::after,
html[lang="fr"] .service-card[open] summary::after {
  content: "Masquer les details";
}

html[lang="th"] .info-card summary::after,
html[lang="th"] .service-card summary::after {
  content: "ดูรายละเอียด";
}

html[lang="th"] .info-card[open] summary::after,
html[lang="th"] .service-card[open] summary::after {
  content: "ซ่อนรายละเอียด";
}

html[lang="zh-Hans"] .info-card summary::after,
html[lang="zh-Hans"] .service-card summary::after {
  content: "查看详情";
}

html[lang="zh-Hans"] .info-card[open] summary::after,
html[lang="zh-Hans"] .service-card[open] summary::after {
  content: "收起详情";
}

html[lang="ru"] .info-card summary::after,
html[lang="ru"] .service-card summary::after {
  content: "Подробнее";
}

html[lang="ru"] .info-card[open] summary::after,
html[lang="ru"] .service-card[open] summary::after {
  content: "Скрыть";
}

.info-card h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.info-details {
  border-top: 1px solid var(--line);
  padding: 18px clamp(22px, 3vw, 32px) clamp(22px, 3vw, 32px);
}

.info-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.info-details li::marker {
  color: var(--gold);
}

.trial-package-card .service-detail-columns {
  gap: 18px;
  margin-bottom: 20px;
}

.trial-package-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: #f7f1e8;
}

.trial-package-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.trial-package-card .info-details h4 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trial-package-cta {
  margin-top: 4px;
}

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

.faq-card summary {
  min-height: 190px;
}

.faq-card .info-details p {
  margin: 0;
  color: var(--muted);
}

.image-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(6, 27, 47, 0.2), transparent 42%);
  pointer-events: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(30px, 5vw, 52px);
  background: var(--line-light);
}

.stat {
  min-height: 140px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat span {
  color: rgba(255, 255, 255, 0.78);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(179, 148, 91, 0.42);
  padding: 0 10px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-navy .chip,
.section-ocean .chip {
  color: var(--white);
  border-color: rgba(214, 194, 141, 0.48);
}

.price {
  display: block;
  margin: 4px 0 14px;
  color: #a85b45;
  font-size: 1.16rem;
  font-weight: 950;
}

.section-navy .price,
.section-ocean .price {
  color: var(--gold-2);
}

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

.package-feature {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(6, 27, 47, 0.08);
}

.package-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-feature > div {
  padding: clamp(22px, 3vw, 30px);
}

.package-feature h3,
.package-row h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.1;
}

.package-feature p,
.package-row p {
  color: var(--muted);
}

.package-feature-dark {
  grid-template-rows: 1fr;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(6, 27, 47, 0.96), rgba(13, 63, 86, 0.96)),
    var(--navy);
}

.package-feature-dark h3,
.package-feature-dark p,
.package-feature-dark .chip,
.package-feature-dark .price-stack span {
  color: var(--white);
}

.package-feature-dark .chip {
  border-color: rgba(214, 194, 141, 0.5);
}

.price-stack {
  display: grid;
  gap: 5px;
  align-content: start;
}

.price-stack strong {
  color: #a85b45;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 950;
  line-height: 1;
}

.section-navy .price-stack strong,
.section-ocean .price-stack strong,
.package-feature-dark .price-stack strong {
  color: var(--gold-2);
}

.price-stack span {
  color: rgba(16, 24, 32, 0.58);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-navy .price-stack span,
.section-ocean .price-stack span {
  color: rgba(255, 255, 255, 0.64);
}

.package-matrix {
  display: grid;
  gap: 14px;
}

.package-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.26fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.06);
}

.package-row h3 {
  color: var(--white);
}

.package-row p {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.service-list li::marker {
  color: var(--gold-2);
}

.package-grid-offset {
  margin-top: clamp(30px, 5vw, 56px);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.service-tab {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-category {
  scroll-margin-top: 110px;
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 5vw, 58px);
  margin-top: clamp(42px, 7vw, 80px);
}

.service-category:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.service-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 27, 47, 0.06);
}

.service-card[open] {
  border-color: rgba(179, 148, 91, 0.5);
}

.service-card summary {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  cursor: pointer;
  list-style: none;
}

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

.service-card summary::after {
  justify-self: start;
  content: "View details";
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card[open] summary::after {
  content: "Hide details";
}

.service-card h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.1;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card .price-stack {
  margin-top: 4px;
}

.service-details {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: clamp(18px, 3vw, 28px) clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px);
}

.service-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.service-details h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-details li::marker {
  color: var(--gold);
}

.service-flyer {
  display: grid;
  gap: 10px;
  width: min(100%, 460px);
  border: 1px solid var(--line);
  padding: 12px;
  background: #f7f1e8;
}

.service-flyer img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.service-flyer figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.service-action-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.contact-detail {
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 27, 47, 0.06);
}

.contact-detail span,
.map-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong,
.map-panel a {
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.16;
}

.contact-detail p {
  margin: 10px 0 0;
  color: var(--muted);
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  border: 1px solid var(--line);
  margin-top: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-preview {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 47, 0.88), rgba(13, 63, 86, 0.72)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 46px),
    var(--ocean);
}

.map-preview::before {
  position: absolute;
  top: 34%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 6px solid var(--gold-2);
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--navy);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.map-preview strong,
.map-preview em {
  position: relative;
  z-index: 1;
}

.map-preview strong {
  color: var(--white);
}

.map-preview em {
  margin-top: 8px;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 900;
}

.price-table {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.price-line {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.price-line strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.price-line span {
  color: #a85b45;
  font-weight: 950;
}

.price-line em {
  color: var(--muted);
  font-style: normal;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.form-box .button,
.contact-actions .button {
  width: 100%;
}

.form-submit {
  margin-top: 4px;
}

.category-band {
  border-top: 1px solid var(--line);
  padding-top: clamp(32px, 5vw, 54px);
  margin-top: clamp(34px, 6vw, 70px);
}

.category-band:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.category-head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.category-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.category-head p {
  color: var(--muted);
}

.notice {
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.source-note {
  margin: 28px 0 0;
  color: rgba(16, 24, 32, 0.58);
  font-size: 0.88rem;
}

.section-navy .source-note,
.section-ocean .source-note {
  color: rgba(255, 255, 255, 0.58);
}

.form-box {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.06);
}

.form-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  margin-bottom: 16px;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.form-box select {
  min-height: 54px;
  appearance: none;
}

.form-box select:invalid {
  color: rgba(255, 255, 255, 0.46);
}

.form-box select option {
  color: var(--navy);
  background: var(--white);
}

.form-box textarea {
  min-height: 132px;
  resize: vertical;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.footer {
  color: rgba(255, 255, 255, 0.56);
  background: #041321;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  font-size: 0.84rem;
}

.footer-logo {
  width: 132px;
  opacity: 0.62;
  filter: brightness(0) invert(1);
}

.footer-text {
  display: grid;
  gap: 4px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
}

.footer-social {
  margin-left: auto;
}

.footer-social .social-logo {
  width: 36px;
  height: 36px;
}

.footer-social .social-logo::before {
  width: 18px;
  height: 18px;
}

@media (max-width: 960px) {
  .nav-inner {
    min-height: 74px;
  }

  .nav-links {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .social-links-nav {
    display: none;
  }

  .mobile-menu {
    display: block !important;
  }

  .hero-content,
  .page-hero .hero-content,
  .section-heading,
  .split,
  .category-head,
  .cta-panel,
  .package-row,
  .map-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    display: none;
  }

  .contact-hero-card {
    display: block;
  }

  .grid-3,
  .grid-4,
  .stat-row,
  .trial-package-grid,
  .package-feature-grid,
  .contact-detail-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 680px) {
  .wrap,
  .nav-inner,
  .hero-content,
  .page-hero .hero-content,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .nav-logo {
    width: clamp(128px, 37vw, 152px);
    min-width: 118px;
  }

  .nav-inner {
    gap: 8px;
  }

  .language-trigger {
    min-width: 54px;
    height: 38px;
    padding: 0 10px;
  }

  .language-panel {
    right: -54px;
    min-width: 174px;
  }

  .nav-whatsapp,
  .mobile-menu-trigger {
    width: 42px;
    height: 42px;
  }

  .nav-whatsapp::before {
    width: 23px;
    height: 23px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 78px 0 50px;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.25rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stat-row,
  .trial-package-grid,
  .package-feature-grid,
  .contact-detail-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

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

  .floating-line {
    right: 16px;
    bottom: 76px;
  }

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

  .image-panel {
    min-height: 320px;
  }

  .map-preview {
    min-height: 260px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social {
    margin-left: 0;
  }
}
