:root {
  --bg: #f2f1ef;
  --bg-soft: #f8f6f4;
  --glass: rgba(255, 255, 255, 0.42);
  --glass-strong: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.78);
  --line-strong: rgba(255, 255, 255, 0.92);
  --text: #463d38;
  --muted: #6e655f;
  --gold: #ba8e5c;
  --gold-strong: #a77a4b;
  --white: #ffffff;
  --font-main: "Manrope", "Segoe UI", Arial, sans-serif;

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 6px 14px rgba(34, 23, 13, 0.06);
  --shadow-md: 0 14px 30px rgba(34, 23, 13, 0.09);
  --shadow-lg: 0 26px 70px rgba(34, 23, 13, 0.13);

  --max-width: 1280px;
  --slim-width: 1160px;
  --digit-grad: linear-gradient(180deg, #d7b47f 0%, #b78751 52%, #8f6438 100%);
  --digit-ring: linear-gradient(180deg, #f8f2e6 0%, #e9d5b2 100%);
  --sheen-top: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.4) 42%, rgba(255, 255, 255, 0) 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  font-family: var(--font-main);
  color: var(--text);
  background: #f1eeeb;
  line-height: 1.28;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.12) 100%),
    url("../media/bg-header-soft.webp") center / cover no-repeat;
  opacity: 0.86;
  z-index: -1;
}

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

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
.brand span {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  letter-spacing: 0.008em;
}

p {
  margin: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.container.slim {
  width: min(var(--slim-width), calc(100% - 48px));
}

.section {
  padding: 16px 0 44px;
}

.glass {
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.24) 100%);
  backdrop-filter: blur(14px) saturate(112%);
  box-shadow: 0 16px 34px rgba(45, 31, 18, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.glass-soft {
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow: 0 12px 26px rgba(45, 31, 18, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.glass,
.glass-soft,
.track,
.review,
.field,
.guide-card {
  position: relative;
  isolation: isolate;
}

.glass::before,
.glass-soft::before,
.track::before,
.review::before,
.field::before,
.guide-card::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 38px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.26) 44%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  opacity: 0.84;
  z-index: 0;
}

.glass > *,
.glass-soft > *,
.track > *,
.review > *,
.field > *,
.guide-card > * {
  position: relative;
  z-index: 2;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  overflow: visible;
  border-bottom: 2px solid rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(248, 244, 238, 0.46) 100%);
  box-shadow: 0 8px 22px rgba(42, 30, 17, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  overflow: visible;
}

.brand span {
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 600;
  line-height: 1.24;
  padding-bottom: 10px;
  color: #b07d49;
  display: inline-block;
  background: linear-gradient(180deg, #e8cba1 0%, #c9955e 48%, #8f5f35 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.26), 0 6px 12px rgba(122, 88, 55, 0.08);
}

.brand small {
  display: none;
}

.navlinks {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.navlinks a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(48, 41, 35, 0.84);
  padding: 10px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navlinks a:hover {
  background: rgba(186, 142, 92, 0.16);
}

.navlinks a.active {
  background: rgba(186, 142, 92, 0.2);
  color: rgba(48, 41, 35, 0.96);
}

.cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.3) 100%);
  backdrop-filter: blur(8px);
  color: rgba(48, 41, 35, 0.9);
}

.menu-toggle svg {
  display: block;
}

/* Buttons */
.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.14s ease, filter 0.2s ease, background-color 0.2s ease;
}

.btn {
  border: 1px solid rgba(168, 129, 82, 0.52);
  background: linear-gradient(180deg, rgba(220, 188, 139, 0.84) 0%, rgba(190, 149, 94, 0.8) 100%);
  backdrop-filter: blur(8px) saturate(114%);
  color: #fff8ec;
  text-shadow: 0 1px 0 rgba(121, 85, 47, 0.56), 0 0 8px rgba(255, 228, 190, 0.3);
  box-shadow: 0 10px 24px rgba(147, 107, 65, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.btn:hover {
  filter: brightness(1.04) saturate(1.05);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.28) 100%);
  backdrop-filter: blur(8px);
  color: rgba(48, 41, 35, 0.9);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn:active,
.btn-ghost:active {
  transform: translateY(1px);
}

/* Hero */
.hero-home {
  padding-top: 18px;
}

.hero-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(470px, 43vw, 620px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.82) brightness(1.04) contrast(0.94);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 35%, rgba(247, 246, 250, 0.94) 0%, rgba(247, 246, 250, 0.84) 34%, rgba(247, 246, 250, 0.56) 52%, rgba(247, 246, 250, 0.2) 68%, rgba(247, 246, 250, 0) 79%),
    linear-gradient(90deg, rgba(244, 243, 249, 0.74) 0%, rgba(244, 243, 249, 0.5) 34%, rgba(244, 243, 249, 0.18) 56%, rgba(244, 243, 249, 0) 74%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(560px, 48%);
  padding: clamp(62px, 5.8vw, 92px) 0 clamp(28px, 2.8vw, 40px) clamp(34px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content h1 {
  font-size: clamp(38px, 3.6vw, 57px);
  color: #302822;
  line-height: 0.9;
  max-width: 9.2ch;
}

.hero-content p {
  margin-top: 16px;
  color: #5e554e;
  font-size: clamp(19px, 1.54vw, 26px);
  line-height: 1.3;
  max-width: 17ch;
}

.hero-actions {
  margin-top: clamp(20px, 2.2vw, 30px);
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.hero-btn {
  min-height: 58px;
  padding-inline: clamp(28px, 2.8vw, 38px);
  font-size: clamp(21px, 1.52vw, 28px);
  font-weight: 600;
  font-family: var(--font-main);
  border-color: rgba(163, 120, 74, 0.5);
}

.hero-actions .btn-ghost {
  border-color: rgba(144, 111, 76, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 248, 238, 0.74) 100%);
  color: rgba(58, 47, 39, 0.95);
  box-shadow: 0 10px 22px rgba(79, 56, 32, 0.12);
}

.hero-actions .btn-ghost:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 243, 0.84) 100%);
}

.hero-meta {
  display: none;
}

.hero-meta span {
  font-size: 11px;
  color: rgba(64, 53, 44, 0.94);
  border: 1px solid rgba(145, 113, 80, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 248, 238, 0.74) 100%);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 6px 14px rgba(76, 54, 31, 0.08);
}

.hero-price-badge {
  position: absolute;
  left: clamp(20px, 3.2vw, 56px);
  top: clamp(112px, 8.2vw, 156px);
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
  min-width: clamp(320px, 31vw, 460px);
  padding: clamp(10px, 1.2vw, 16px) clamp(20px, 2vw, 30px);
  border-radius: 34px;
  border: 2px solid rgba(241, 216, 177, 0.95);
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 78% 72%, rgba(255, 242, 219, 0.38) 0%, rgba(255, 242, 219, 0) 48%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.76) 0%, rgba(248, 236, 218, 0.72) 100%);
  box-shadow:
    0 14px 34px rgba(132, 95, 57, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -2px 10px rgba(212, 180, 139, 0.28);
  backdrop-filter: blur(8px) saturate(116%);
  pointer-events: none;
  overflow: hidden;
}

.hero-price-badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 2px solid rgba(234, 208, 169, 0.58);
  pointer-events: none;
}

.hero-price-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 84%, rgba(250, 232, 200, 0.26) 0%, rgba(250, 232, 200, 0) 36%),
    radial-gradient(circle at 86% 16%, rgba(255, 245, 225, 0.22) 0%, rgba(255, 245, 225, 0) 34%);
  pointer-events: none;
}

.hero-price-main {
  font-family: "Prata", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.3vw, 40px);
  line-height: 1.02;
  font-weight: 400;
  color: rgba(92, 63, 37, 0.96);
  white-space: nowrap;
  letter-spacing: 0.008em;
  text-shadow: 0 1px 0 rgba(255, 241, 218, 0.64);
}

.hero-price-sub {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 1.8vw, 32px);
  line-height: 0.98;
  font-weight: 500;
  color: rgba(94, 66, 41, 0.95);
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 241, 218, 0.64);
}

.hero-price-mobile-line {
  display: none;
}

/* Home categories */
.categories-home {
  padding-top: 8px;
  padding-bottom: 16px;
}

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

.category-tile {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.24) 100%);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-tile img {
  width: 100%;
  height: clamp(118px, 11vw, 172px);
  object-fit: cover;
  display: block;
}

.category-tile span {
  display: block;
  text-align: center;
  padding: 10px 12px 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 0.95;
  color: #342d28;
}

/* Premium cards */
.premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.24fr) minmax(0, 1fr);
  gap: 14px;
}

.premium-card {
  border-radius: var(--radius-lg);
  padding: clamp(16px, 1.9vw, 24px);
  overflow: hidden;
}

.premium-card h2 {
  font-size: clamp(22px, 1.9vw, 34px);
  color: #2f2822;
  line-height: 1.04;
}

.premium-card p {
  margin-top: 10px;
  color: #635a53;
  font-size: clamp(15px, 0.96vw, 18px);
  line-height: 1.35;
}

.mini-steps {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mini-step {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.22) 100%);
  backdrop-filter: blur(8px);
  padding: 11px 12px;
  overflow: hidden;
}

.mini-step img {
  width: 100%;
  height: clamp(74px, 6.4vw, 94px);
  object-fit: cover;
  display: block;
}

.mini-step div {
  padding: 0;
  line-height: 1.2;
  font-size: clamp(16px, 1.04vw, 19px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(58, 50, 42, 0.9);
}

.mini-step b {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  flex: 0 0 32px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(182, 144, 95, 0.52);
  background: var(--digit-ring);
  color: #9a6d3d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 0.84;
  margin-right: 0;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  font-variant-numeric: lining-nums;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.58), 0 5px 12px rgba(83, 61, 37, 0.14);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.card-link {
  margin-top: 14px;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.title-row-centered {
  justify-content: center;
}

.title-row-centered h2 {
  text-align: center;
}

.rating {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.media-combo {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.media-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.2);
}

.media-main img {
  width: 100%;
  height: clamp(180px, 17vw, 260px);
  object-fit: cover;
  display: block;
}

.play-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(44, 36, 30, 0.34);
  color: #fff;
  font-size: 28px;
}

.center-split {
  display: grid;
  gap: 14px;
}

.split-box {
  border-radius: 16px;
  padding: 14px;
}

.split-box .media-combo {
  margin-top: 10px;
}

.split-box p {
  margin-top: 8px;
}

.split-box .card-link {
  margin-top: 12px;
}

.card-reviews-inline {
  margin-bottom: 14px;
}

.home-page #examples .card-link,
.home-page #examples .premium-card > .btn {
  display: flex !important;
  justify-content: center;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
}

.home-page #examples .examples-link {
  border-color: rgba(186, 142, 92, 0.64);
}

/* Home cards: standardize and reduce key headings by ~15% */
.home-page #examples .premium-card > h2,
.home-page #examples .split-box .title-row > h2 {
  font-size: clamp(20px, 1.65vw, 29px);
  line-height: 1.08;
}

.home-contact-cta-wrap {
  padding: 2px 0 14px;
}

.home-contact-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home-contact-cta .contact-trigger,
.home-contact-cta .partner-trigger {
  min-height: 44px !important;
  padding: 8px 18px !important;
  border-width: 1px !important;
  border-radius: 14px;
  font-size: 15px !important;
  letter-spacing: 0.006em;
  text-shadow: none !important;
  box-shadow: 0 8px 16px rgba(109, 78, 46, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.home-contact-cta .contact-trigger {
  border: 1px solid rgba(175, 143, 104, 0.56) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(244, 233, 217, 0.72) 100%) !important;
  color: rgba(76, 60, 46, 0.96) !important;
}

.home-contact-cta .partner-trigger {
  border: 1px solid rgba(176, 136, 92, 0.62) !important;
  background: linear-gradient(180deg, rgba(236, 212, 178, 0.92) 0%, rgba(214, 179, 136, 0.9) 100%) !important;
  color: rgba(77, 59, 44, 0.98) !important;
}

.home-contact-cta .contact-trigger:hover,
.home-contact-cta .partner-trigger:hover {
  filter: brightness(1.03) saturate(1.03);
  transform: translateY(-1px);
}

.home-contact-cta .contact-trigger:active,
.home-contact-cta .partner-trigger:active {
  transform: translateY(1px);
}

.home-contact-cta .contact-trigger:focus-visible,
.home-contact-cta .partner-trigger:focus-visible {
  outline: 2px solid rgba(181, 144, 97, 0.62);
  outline-offset: 2px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 28, 0.36);
  backdrop-filter: blur(6px) saturate(90%);
}

.contact-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, calc(100vw - 26px));
  max-height: min(84vh, 680px);
  overflow: auto;
  border-radius: 22px;
  padding: clamp(11px, 1.2vw, 16px);
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  background:
    linear-gradient(180deg, rgba(251, 247, 243, 0.84) 0%, rgba(242, 236, 230, 0.72) 100%),
    url("../media/bg-header-soft.webp") center / cover no-repeat !important;
  backdrop-filter: blur(10px) saturate(108%);
  box-shadow: 0 20px 52px rgba(33, 24, 18, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-modal-dialog::before {
  display: none;
}

.contact-modal-dialog::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 18px;
  border: 1px solid rgba(255, 236, 214, 0.68);
  pointer-events: none;
}

.contact-modal-head {
  text-align: center;
}

.contact-modal-head h2 {
  font-family: var(--font-site) !important;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: 0.002em !important;
  padding-bottom: 0 !important;
}

.contact-modal-head p {
  margin-top: 4px;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.22 !important;
  color: rgba(81, 70, 61, 0.95) !important;
}

.contact-form {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.contact-field {
  display: grid;
  gap: 4px;
}

.contact-field label,
.contact-field legend {
  font-size: clamp(11.5px, 0.78vw, 13.5px);
  font-weight: 700 !important;
  color: rgba(73, 61, 51, 0.94) !important;
  margin: 0;
}

.contact-choice {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
}

.contact-choice legend {
  flex-basis: 100%;
  margin-bottom: 2px;
}

.contact-choice + .contact-field {
  margin-top: 3px;
}

.contact-choice-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: clamp(12.5px, 0.86vw, 14.5px);
  font-weight: 600 !important;
  color: rgba(76, 64, 54, 0.95) !important;
}

.contact-choice-item input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 100%);
  border: 1.6px solid rgba(196, 161, 117, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 1px 2px rgba(56, 43, 31, 0.12);
  display: grid;
  place-items: center;
}

.contact-choice-item input[type="radio"]::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  transform: scale(0);
  transition: transform 0.14s ease;
  background: linear-gradient(180deg, rgba(197, 150, 96, 0.98) 0%, rgba(158, 112, 61, 0.96) 100%);
}

.contact-choice-item input[type="radio"]:checked::before {
  transform: scale(1);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.34) 100%);
  padding: 8px 13px;
  font-size: clamp(13px, 0.84vw, 14.5px);
  color: rgba(64, 54, 46, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form textarea::placeholder {
  color: rgba(99, 88, 78, 0.72);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 3px rgba(191, 152, 105, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-form textarea {
  border-radius: 12px;
  min-height: 72px;
  resize: vertical;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 1px;
}

.contact-actions .btn,
.contact-actions .btn-ghost {
  width: 100%;
  min-width: 0;
  justify-content: center;
  min-height: 40px !important;
  padding: 8px 16px !important;
  font-size: clamp(13.5px, 0.86vw, 15px) !important;
}

.contact-success {
  margin-top: 16px;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.contact-success h3 {
  font-size: clamp(20px, 1.35vw, 28px);
  color: rgba(64, 54, 46, 0.98);
  margin: 0;
}

.contact-success p {
  max-width: 58ch;
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.38;
}

.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 195;
}

.partner-modal[hidden] {
  display: none;
}

.partner-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 27, 0.32);
  backdrop-filter: blur(7px) saturate(98%);
}

.partner-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(940px, calc(100vw - 24px));
  max-height: min(86vh, 740px);
  overflow: auto;
  border-radius: 26px;
  padding: clamp(11px, 1.2vw, 16px);
  border: 2px solid rgba(255, 247, 233, 0.9) !important;
  background:
    linear-gradient(180deg, rgba(252, 247, 242, 0.76) 0%, rgba(245, 237, 228, 0.68) 100%),
    url("../media/bg-header-soft.webp") center / cover no-repeat !important;
  backdrop-filter: blur(10px) saturate(108%);
  box-shadow:
    0 22px 54px rgba(32, 23, 17, 0.2),
    0 0 0 1px rgba(210, 177, 137, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.partner-modal-dialog::before {
  display: none;
}

.partner-modal-dialog::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 20px;
  border: 1px solid rgba(255, 236, 214, 0.66);
  pointer-events: none;
}

.partner-modal-close {
  position: absolute;
  right: 8px;
  top: 7px;
  width: 31px;
  height: 31px;
  border: none;
  background: transparent;
  color: rgba(122, 101, 79, 0.9);
  font-size: 32px;
  line-height: 0.72;
  border-radius: 999px;
}

.partner-modal-close:hover {
  color: rgba(100, 82, 63, 0.95);
  background: rgba(255, 255, 255, 0.24);
}

.partner-modal-head {
  text-align: center;
}

.partner-modal-head h2 {
  font-family: var(--font-site) !important;
  font-size: clamp(34px, 2.5vw, 44px);
  line-height: 1.08 !important;
  font-weight: 700 !important;
  letter-spacing: 0.002em !important;
  padding-bottom: 0 !important;
  color: rgba(66, 54, 44, 0.98) !important;
}

.partner-modal-head p {
  margin: 0 auto;
  max-width: none;
  font-size: clamp(10px, 1.25vw, 15px);
  line-height: 1.18 !important;
  white-space: nowrap;
  color: rgba(82, 70, 60, 0.95) !important;
  text-align: center;
}

.partner-accent {
  color: #a67440;
  font-weight: 700 !important;
  text-shadow: 0 0 10px rgba(246, 209, 157, 0.34);
}

.partner-money-mark {
  color: #a67440;
  font-weight: 800 !important;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(246, 209, 157, 0.32);
}

.partner-main {
  margin-top: 6px;
}

.partner-form {
  margin-top: 0;
  display: grid;
  gap: 8px;
}

.partner-how {
  border: 2px solid rgba(251, 241, 227, 0.88);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  padding: 12px 16px 11px;
}

.partner-how h3 {
  margin: 0;
  text-align: center;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.15 !important;
  padding-bottom: 0 !important;
  color: rgba(67, 55, 45, 0.98) !important;
}

.partner-shell {
  border: 2px solid rgba(251, 241, 227, 0.88);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 330px);
  grid-template-areas:
    "title title"
    "left right";
  overflow: hidden;
}

.partner-left {
  grid-area: left;
  padding: 10px 14px 10px;
  border-top: 1px solid rgba(154, 129, 102, 0.2);
}

.partner-right {
  grid-area: right;
  padding: 12px 12px 10px;
  border-left: 1px solid rgba(154, 129, 102, 0.24);
  border-top: 1px solid rgba(154, 129, 102, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.14) 100%);
}

.partner-steps {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
}

.partner-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 14px;
  min-height: 116px;
  border-radius: 24px;
  border: 1.6px solid rgba(193, 151, 103, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.34) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 3px 8px rgba(115, 82, 48, 0.1);
  font-size: clamp(13px, 0.83vw, 14.5px);
  line-height: 1.3;
  color: rgba(75, 61, 50, 0.96);
  text-align: center;
  overflow: visible;
}

.partner-step-text {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.partner-step-value {
  margin-top: 0;
  padding-top: 2px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.partner-step-value .partner-money-mark {
  font-size: clamp(16px, 1vw, 18px);
}

.partner-steps li:not(:last-child)::after {
  content: "➜";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
  color: rgba(130, 88, 43, 0.98);
  border-radius: 999px;
  border: 1px solid rgba(184, 141, 90, 0.75);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96) 0%, rgba(247, 231, 207, 0.98) 62%, rgba(230, 203, 166, 0.96) 100%);
  box-shadow: 0 4px 10px rgba(92, 65, 35, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-50%);
  z-index: 2;
}

.partner-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1.3px solid rgba(186, 149, 103, 0.62);
  background: linear-gradient(180deg, rgba(251, 244, 233, 0.96) 0%, rgba(235, 214, 184, 0.86) 100%);
  color: rgba(138, 102, 61, 0.98);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 0.9;
  box-shadow: 0 1px 3px rgba(109, 76, 40, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  align-self: center;
}

.partner-left-check {
  margin-top: 8px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  border: 1.6px solid rgba(181, 143, 98, 0.58);
  background: linear-gradient(180deg, rgba(252, 241, 223, 0.8) 0%, rgba(234, 213, 183, 0.62) 100%);
  padding: 3px 11px;
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 600 !important;
  color: rgba(82, 66, 52, 0.95) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.partner-apply {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.partner-apply-title {
  grid-area: title;
  margin: 0;
  padding: 10px 14px 8px;
  font-size: clamp(17px, 1vw, 20px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0.004em;
  text-align: center;
  color: rgba(71, 58, 48, 0.96) !important;
}

.partner-field {
  display: grid;
  gap: 4px;
  margin-bottom: 7px;
}

.partner-field label,
.partner-field legend {
  font-size: clamp(11.5px, 0.72vw, 13px);
  font-weight: 700 !important;
  color: rgba(73, 61, 51, 0.94) !important;
  margin: 0;
}

.partner-apply input[type="text"],
.partner-apply input[type="email"],
.partner-apply input[type="tel"] {
  width: 100%;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.36) 100%);
  padding: 8px 13px;
  font-size: clamp(12.5px, 0.8vw, 14px);
  color: rgba(64, 54, 46, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.partner-apply input[type="text"]::placeholder,
.partner-apply input[type="email"]::placeholder,
.partner-apply input[type="tel"]::placeholder {
  color: rgba(99, 88, 78, 0.72);
}

.partner-apply input[type="text"]:focus,
.partner-apply input[type="email"]:focus,
.partner-apply input[type="tel"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 3px rgba(191, 152, 105, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.partner-choice {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
}

.partner-choice legend {
  flex-basis: 100%;
  margin-bottom: 2px;
}

.partner-choice + .partner-field {
  margin-top: 3px;
}

.partner-choice-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: clamp(12.5px, 0.8vw, 14px);
  font-weight: 600 !important;
  color: rgba(76, 64, 54, 0.95) !important;
}

.partner-choice-item input[type="radio"] {
  margin: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.58) 100%);
  border: 1.6px solid rgba(196, 161, 117, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 1px 2px rgba(56, 43, 31, 0.12);
  display: grid;
  place-items: center;
}

.partner-choice-item input[type="radio"]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: scale(0);
  transition: transform 0.14s ease;
  background: linear-gradient(180deg, rgba(197, 150, 96, 0.98) 0%, rgba(158, 112, 61, 0.96) 100%);
}

.partner-choice-item input[type="radio"]:checked::before {
  transform: scale(1);
}

.partner-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.partner-ticket-card {
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.2) 100%);
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.partner-ticket-card p {
  margin: 0;
  text-align: center;
  font-size: clamp(15px, 0.9vw, 17px);
  line-height: 1.2;
  color: rgba(74, 60, 49, 0.95) !important;
}

.partner-ticket-card p b {
  color: #a67440;
  font-weight: 700 !important;
}

.partner-ticket {
  margin: 8px auto 0;
  width: min(300px, 100%);
  min-height: 58px;
  border-radius: 14px;
  border: 2px solid rgba(194, 152, 104, 0.62);
  background: linear-gradient(180deg, rgba(247, 229, 198, 0.98) 0%, rgba(226, 193, 151, 0.9) 100%);
  display: grid;
  place-items: center;
  font-size: clamp(30px, 1.8vw, 38px);
  font-family: var(--font-site) !important;
  color: rgba(114, 79, 44, 0.96) !important;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.004em;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 6px 12px rgba(124, 88, 49, 0.18);
}

.partner-ticket::before,
.partner-ticket::after {
  display: none;
}

.partner-ticket-plus {
  min-height: 58px;
  font-size: clamp(30px, 1.8vw, 38px);
}

.partner-right .partner-submit {
  width: min(260px, 100%);
  min-height: 46px !important;
  justify-content: center;
  display: flex !important;
  flex-direction: column;
  gap: 0;
  font-size: clamp(15px, 1.02vw, 17px) !important;
  font-weight: 700 !important;
  border: 2px solid rgba(180, 136, 87, 0.76) !important;
  background: linear-gradient(180deg, rgba(224, 189, 142, 0.96) 0%, rgba(190, 149, 95, 0.9) 100%) !important;
  box-shadow: 0 10px 18px rgba(130, 95, 56, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.64) !important;
  letter-spacing: 0.005em;
  margin-top: 0;
}

.partner-right .partner-submit > span {
  line-height: 1.06;
}

.partner-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.partner-actions .btn-ghost {
  width: min(260px, 100%);
  min-width: 0;
  min-height: 40px !important;
  padding: 8px 18px !important;
  font-size: clamp(13.5px, 0.86vw, 15px) !important;
  border-radius: 18px !important;
  border: 2px solid rgba(255, 255, 255, 0.86) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.34) 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  color: rgba(83, 69, 57, 0.96) !important;
}

.partner-note {
  margin-top: 0;
  text-align: center;
  font-size: clamp(10.5px, 0.66vw, 12px);
  line-height: 1.2;
  color: rgba(78, 67, 57, 0.9) !important;
}

.partner-success {
  margin-top: 8px;
  padding: 16px 14px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.24) 100%);
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.partner-success h3 {
  font-size: clamp(24px, 1.64vw, 31px);
  margin: 0;
}

.partner-success p {
  max-width: 54ch;
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.35;
}

@media (max-width: 460px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .partner-actions .btn-ghost {
    width: 100%;
    min-width: 0;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 18, 12, 0.6);
  backdrop-filter: blur(4px);
}

.video-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100vw - 28px));
  border-radius: 18px;
  padding: 12px;
}

.video-modal-dialog video {
  display: block;
  width: 100%;
  max-height: min(76vh, 680px);
  border-radius: 12px;
  background: #111;
}

.video-modal-close {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(38, 29, 22, 0.78);
  color: #fff;
  font-size: 21px;
  line-height: 1;
}

.check-list {
  list-style: none;
  margin: 12px 0 14px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(15px, 1.04vw, 18px);
  line-height: 1.35;
  color: #4f453d;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.card-photo {
  width: 100%;
  height: clamp(134px, 10.3vw, 186px);
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  margin-bottom: 12px;
}

/* Page head */
.page-head {
  padding-top: 28px;
  padding-bottom: 10px;
}

.page-head h1 {
  font-size: clamp(36px, 3.4vw, 54px);
  color: #2d2621;
}

.catalog-page .page-head h1 {
  font-size: clamp(27px, 2.55vw, 41px);
}

.reviews-page .page-head h1,
.how-page .page-head h1 {
  font-size: clamp(27px, 2.55vw, 41px);
}

.order-page .page-head h1 {
  font-size: clamp(27px, 2.55vw, 41px);
}

.page-head p {
  margin-top: 12px;
  font-size: clamp(17px, 1.25vw, 21px);
  color: #645b54;
  line-height: 1.4;
}

.page-head .container.slim {
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.22) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(42, 28, 15, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  padding: clamp(14px, 2vw, 24px);
}

/* Player */
.player-shell {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.player-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.26) 100%);
  backdrop-filter: blur(8px);
}

.tab {
  border-radius: 999px;
  font-size: 14px;
  padding: 8px 12px;
  font-weight: 600;
  color: rgba(48, 41, 35, 0.82);
}

.tab:hover {
  background: rgba(186, 142, 92, 0.15);
}

.tab.active {
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(186, 142, 92, 0.24);
  color: rgba(48, 41, 35, 0.95);
}

.tracklist {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.track {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.22) 100%);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.track.is-active {
  border-color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.32) 100%);
}

.cover {
  position: relative;
  width: 142px;
  height: 82px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.78);
}

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

.cover-play {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(217, 189, 149, 0.58);
  background: linear-gradient(180deg, rgba(193, 150, 100, 0.9) 0%, rgba(157, 117, 72, 0.9) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  box-shadow: 0 8px 16px rgba(63, 44, 24, 0.24);
}

.cover-play svg {
  width: 24px;
  height: 24px;
}

.tmeta .title {
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 700;
  line-height: 1.15;
}

.tmeta .sub {
  margin-top: 3px;
  color: #665d56;
  font-size: 13px;
  line-height: 1.3;
}

.tcontrols {
  display: none;
}

.duration {
  min-width: 36px;
  text-align: right;
  font-size: 13px;
  color: rgba(48, 41, 35, 0.72);
  font-variant-numeric: tabular-nums;
}

.iconbtn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(167, 122, 75, 0.34);
  background: rgba(186, 142, 92, 0.18);
}

.iconbtn:hover {
  background: rgba(186, 142, 92, 0.26);
}

.track-more {
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(126, 108, 88, 0.9);
}

.tracklist-more-wrap {
  padding: 2px 12px 14px;
  display: flex;
  justify-content: center;
}

.tracklist-more-wrap.is-hidden {
  display: none;
}

.tracklist-more.is-hidden {
  display: none;
}

.toolbar-more {
  justify-self: start;
  padding: 9px 14px;
  font-size: 13px;
}

.toolbar-more.is-hidden {
  display: none;
}

.tab.is-hidden-cat {
  display: none;
}

.track.is-hidden-track {
  display: none;
}

.nowplaying {
  border-top: 2px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.2) 100%);
  padding: 12px 14px;
}

.np-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 36%);
  gap: 14px;
  align-items: end;
}

.np-title {
  font-size: clamp(28px, 2.35vw, 38px);
  font-weight: 700;
  line-height: 1.02;
}

.np-sub {
  margin-top: 6px;
  color: #695f57;
  font-size: 14px;
  line-height: 1.32;
}

.np-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.np-actions .btn-ghost {
  padding: 10px 14px;
  font-size: 14px;
}

.seek {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
}

.time {
  font-size: 12px;
  min-width: 38px;
  text-align: right;
  color: rgba(48, 41, 35, 0.66);
  font-variant-numeric: tabular-nums;
}

.seek input[type="range"] {
  width: 100%;
}

.inline-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Panel and reviews */
.panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.panel .head {
  border-bottom: 2px solid rgba(255, 255, 255, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.22) 100%);
  padding: 16px;
}

.panel .head h3 {
  font-size: clamp(34px, 2.5vw, 46px);
  color: #2d2621;
}

.reviews-page .panel .head h3 {
  font-size: clamp(26px, 1.88vw, 35px);
}

.panel .head p {
  margin-top: 8px;
  color: #665d56;
  font-size: 15px;
}

.panel .content {
  padding: 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.review {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.22) 100%);
  padding: 12px;
}

.review .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #273248;
  border: 1px solid rgba(87, 113, 160, 0.24);
  background: rgba(152, 177, 213, 0.28);
  overflow: hidden;
}

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

.rname {
  font-weight: 700;
  line-height: 1.1;
}

.rdate {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(48, 41, 35, 0.62);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 18px;
}

.rtext {
  margin-top: 8px;
  color: rgba(48, 41, 35, 0.9);
  line-height: 1.38;
  font-size: 16px;
}

/* How */
.how-shell {
  border-radius: var(--radius-xl);
  padding: clamp(16px, 2vw, 22px);
}

.how-title {
  text-align: center;
  font-size: clamp(40px, 3vw, 54px);
  color: #2f2823;
}

.how-page .how-title {
  font-size: clamp(30px, 2.25vw, 41px);
}

.how-step {
  margin-top: 12px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr minmax(160px, 34%);
  align-items: center;
  gap: 12px;
}

.how-step-num {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  flex: 0 0 64px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(182, 144, 95, 0.52);
  background: var(--digit-ring);
  color: #9a6d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 0.84;
  padding: 0 0 2px;
  font-variant-numeric: lining-nums;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.58), 0 8px 16px rgba(83, 61, 37, 0.16);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.how-step-content h3 {
  font-size: clamp(36px, 2.8vw, 48px);
  color: #2f2823;
}

.how-step-content p {
  margin-top: 8px;
  color: #5f5650;
  line-height: 1.36;
  font-size: 18px;
}

.how-step img {
  width: 100%;
  height: clamp(130px, 11vw, 172px);
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  object-fit: cover;
}

.how-bottom {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Order */
.form-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.form-hero {
  padding: 18px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.form-hero h2 {
  font-size: clamp(38px, 2.8vw, 52px);
  color: #2d2621;
}

.order-page .form-hero h2 {
  font-size: clamp(29px, 2.1vw, 39px);
}

.form-hero p {
  margin-top: 8px;
  color: #655c55;
  font-size: 14px;
}

.order-stage {
  margin: 14px 14px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
}

.stage-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(182, 144, 95, 0.52);
  background: var(--digit-ring);
  color: #9a6d3d;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 0.84;
  padding: 0 0 2px;
  font-variant-numeric: lining-nums;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.58), 0 6px 13px rgba(83, 61, 37, 0.14);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.order-stage h3 {
  font-size: clamp(30px, 2.2vw, 40px);
  color: #2f2823;
}

.order-page .order-stage h3 {
  font-size: clamp(23px, 1.65vw, 30px);
}

.order-stage p {
  margin-top: 4px;
  color: #655d55;
  font-size: 14px;
}

.form-grid {
  padding: 10px 14px 0;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.field {
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.18) 100%);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.field::before {
  display: none;
}

.field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(48, 41, 35, 0.86);
}

.promo-label-note {
  display: inline;
  margin-left: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(96, 82, 68, 0.78);
}

.promo-feedback {
  margin: 1px 2px 0;
  font-size: 12px;
  line-height: 1.32;
  color: rgba(94, 80, 67, 0.88);
}

.promo-feedback.is-valid {
  color: rgba(38, 115, 64, 0.95);
}

.promo-feedback.is-invalid {
  color: rgba(154, 49, 44, 0.96);
}

.field input,
.field select,
.field textarea {
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.32) 100%);
  backdrop-filter: blur(8px);
  padding: 10px 12px;
  width: 100%;
  outline: none;
}

.field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 46px;
  max-width: 100%;
}

.field input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

.field input[type="date"]::-webkit-datetime-edit,
.field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.88;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field textarea.auto-grow {
  min-height: 48px;
  resize: none;
  overflow-y: hidden;
}

.field textarea.auto-grow.auto-grow-lg {
  min-height: 116px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(88, 75, 63, 0.78);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 3px rgba(192, 152, 103, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.field.span-2 {
  grid-column: 1 / -1;
}

.liked-song-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 2px 2px 0;
}

.liked-song-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(70, 58, 47, 0.95);
  cursor: pointer;
}

.liked-song-option input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #b7844f;
  appearance: auto;
  -webkit-appearance: checkbox;
  cursor: pointer;
}

.hidden {
  display: none;
}

.form-actions {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.order-form-error {
  margin: 10px 14px 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(187, 62, 49, 0.58);
  background: linear-gradient(180deg, rgba(255, 236, 233, 0.86) 0%, rgba(255, 228, 223, 0.64) 100%);
  color: rgba(143, 36, 27, 0.96) !important;
  font-size: 14px;
  font-weight: 600 !important;
  line-height: 1.3;
}

.field-error {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.25;
  color: rgba(165, 43, 34, 0.96) !important;
  font-weight: 600 !important;
}

.contact-form .order-form-error,
.partner-form .order-form-error {
  margin: 0 0 6px;
  padding: 8px 10px;
  font-size: 12.5px;
}

.contact-field .field-error,
.partner-field .field-error {
  margin-top: 2px;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(183, 53, 43, 0.92) !important;
  box-shadow: 0 0 0 2px rgba(183, 53, 43, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid,
.partner-field input.is-invalid {
  border-color: rgba(183, 53, 43, 0.92) !important;
  box-shadow: 0 0 0 2px rgba(183, 53, 43, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
}

.order-success-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
}

.order-success-modal[hidden] {
  display: none;
}

.order-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(39, 31, 24, 0.42);
  backdrop-filter: blur(5px) saturate(98%);
}

.order-success-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 28px));
  border-radius: 24px;
  padding: 18px 18px 16px;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  background:
    linear-gradient(180deg, rgba(252, 247, 242, 0.92) 0%, rgba(245, 237, 228, 0.86) 100%),
    url("../media/bg-header-soft.webp") center / cover no-repeat !important;
  box-shadow: 0 22px 54px rgba(32, 23, 17, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  text-align: center;
}

.order-success-dialog h3 {
  margin: 0;
  padding-bottom: 0 !important;
  font-size: clamp(23px, 1.8vw, 30px);
  color: rgba(69, 56, 45, 0.98) !important;
}

.order-success-dialog p {
  margin-top: 10px;
  font-size: clamp(15px, 1.02vw, 18px);
  line-height: 1.4;
  color: rgba(80, 68, 57, 0.96) !important;
}

.order-success-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.note {
  font-size: 12px;
  color: rgba(48, 41, 35, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.note-dot {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 999px;
  border: 1px solid rgba(170, 132, 85, 0.56);
  background: linear-gradient(180deg, rgba(235, 212, 176, 0.88) 0%, rgba(194, 153, 98, 0.86) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 4px 10px rgba(114, 82, 48, 0.18);
  position: relative;
}

.note-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 8px;
  height: 6px;
  border: 1.4px solid rgba(125, 91, 52, 0.95);
  border-radius: 2px;
  background: rgba(255, 247, 235, 0.4);
}

.note-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 7px;
  height: 5px;
  border: 1.4px solid rgba(125, 91, 52, 0.95);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.actions-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 30px 0 42px;
  color: rgba(48, 41, 35, 0.72);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  flex-direction: row;
  text-align: left;
}

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

.footer-social-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(48, 41, 35, 0.76);
  margin-right: 6px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.28) 100%);
  backdrop-filter: blur(8px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.footer-social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.duration:empty {
  display: none;
}

.footer a {
  color: rgba(48, 41, 35, 0.84);
}

.footer a:hover {
  text-decoration: underline;
}

.mobile-bottom-nav {
  display: none;
}

/* Readability pass (desktop/tablet) */
@media (min-width: 901px) {
  .navlinks a {
    font-size: 17px;
    padding: 11px 14px;
  }

  .btn,
  .btn-ghost {
    font-size: 18px;
    padding: 13px 24px;
  }

  .premium-card p {
    font-size: clamp(17px, 1.02vw, 20px);
    line-height: 1.42;
  }

  .mini-step div {
    font-size: clamp(17px, 1.05vw, 20px);
  }

  .check-list li {
    font-size: clamp(17px, 1.05vw, 20px);
    line-height: 1.4;
  }

  .tab {
    font-size: 16px;
  }

  .tmeta .sub {
    font-size: 15px;
  }

  .duration,
  .toolbar-more {
    font-size: 15px;
  }

  .np-sub {
    font-size: 17px;
  }

  .np-actions .btn-ghost {
    font-size: 16px;
  }

  .time {
    font-size: 14px;
  }

  .panel .head p {
    font-size: 17px;
  }

  .rdate {
    font-size: 14px;
  }

  .rtext {
    font-size: 17px;
    line-height: 1.45;
  }

  .form-hero p,
  .order-stage p {
    font-size: 16px;
  }

  .field label {
    font-size: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  .note {
    font-size: 14px;
  }

  .footer {
    font-size: 15px;
  }

  .footer-social-title {
    font-size: 14px;
  }

  .social-strip p {
    font-size: 15px;
  }

  .social-links a {
    font-size: 14px;
  }

  .text-steps .mini-step small {
    font-size: 15px;
  }

  .guide-card p,
  .guide-card ul {
    font-size: 16px;
    line-height: 1.42;
  }

  .premium-card p,
  .check-list li,
  .tmeta .sub,
  .duration,
  .toolbar-more,
  .np-sub,
  .panel .head p,
  .rdate,
  .rtext,
  .form-hero p,
  .order-stage p,
  .field label,
  .field input,
  .field select,
  .field textarea,
  .note,
  .footer,
  .footer-social-title,
  .social-links a,
  .text-steps .mini-step small,
  .guide-card p,
  .guide-card ul {
    font-weight: 500;
  }
}

/* Toast */
.toast {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  display: none;
  max-width: min(420px, calc(100vw - 24px));
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.toast.show {
  display: block;
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(167, 122, 75, 0.54);
  outline-offset: 2px;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-shell,
  .premium-card,
  .panel,
  .form-wrap,
  .player-shell,
  .how-shell {
    animation: fade-rise 0.5s ease both;
  }

  .premium-card:nth-child(2) {
    animation-delay: 0.07s;
  }

  .premium-card:nth-child(3) {
    animation-delay: 0.12s;
  }

  @keyframes fade-rise {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-page .hero-content {
    max-width: min(560px, 55%);
    padding-top: clamp(44px, 5.4vw, 74px);
  }

  .how-step {
    grid-template-columns: auto 1fr;
  }

  .how-step img {
    grid-column: 1 / -1;
    height: 190px;
  }
}

@media (max-width: 920px) {
  .container,
  .container.slim {
    width: calc(100% - 28px);
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    border-color: rgba(126, 108, 88, 0.24);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 18px rgba(34, 23, 13, 0.08);
    margin-left: auto;
  }

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

  .topbar.is-open .menu-toggle {
    background: rgba(186, 142, 92, 0.18);
    border-color: rgba(167, 122, 75, 0.42);
    color: rgba(107, 76, 44, 0.96);
  }

  .navlinks {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 66px;
    z-index: 70;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .topbar.is-open .navlinks {
    display: flex;
  }

  .navlinks a {
    border-radius: 10px;
    padding: 10px;
  }

  .cta {
    margin-left: 0;
  }

  .hero-shell {
    min-height: 470px;
  }

  .hero-bg {
    object-position: 76% center;
  }

  .hero-content {
    max-width: min(440px, 70%);
    padding: 30px 16px 14px 18px;
  }

  .hero-content h1 {
    max-width: 13ch;
  }

  .hero-content p {
    max-width: 30ch;
  }

  .hero-actions {
    width: auto;
    justify-content: flex-start;
    gap: 12px;
  }

  .hero-meta {
    max-width: 100%;
    justify-content: flex-start;
  }

  .hero-price-badge {
    left: 18px;
    top: 74px;
    padding: 10px 14px;
    min-width: 0;
    border-radius: 20px;
  }

  .hero-price-main {
    font-size: clamp(18px, 2.8vw, 22px);
  }

  .hero-price-sub {
    font-size: clamp(16px, 2.4vw, 20px);
  }

  .np-row {
    grid-template-columns: 1fr;
  }

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

  .contact-modal-dialog {
    width: min(760px, calc(100vw - 20px));
  }

  .contact-modal-head h2 {
    font-size: clamp(24px, 3.2vw, 31px);
    padding-bottom: 0 !important;
  }

  .contact-modal-head p {
    font-size: clamp(12px, 1.25vw, 15px);
    max-width: 34ch;
  }

  .contact-field label,
  .contact-field legend {
    font-size: clamp(11.5px, 0.9vw, 12.5px);
  }

  .contact-choice-item,
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    font-size: clamp(12.5px, 0.98vw, 13.5px);
  }

  .contact-actions .btn,
  .contact-actions .btn-ghost {
    min-height: 40px !important;
    font-size: clamp(13.5px, 1.1vw, 15px) !important;
  }

  .partner-modal-dialog {
    width: min(900px, calc(100vw - 16px));
  }

  .partner-how {
    padding: 10px 12px 10px;
  }

  .partner-how h3 {
    font-size: clamp(19px, 2.1vw, 24px);
    padding-bottom: 0 !important;
  }

  .partner-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin-top: 8px;
  }

  .partner-left-check {
    font-size: clamp(12px, 1.1vw, 13px);
  }

  .partner-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "left"
      "right";
  }

  .partner-left,
  .partner-right {
    padding: 12px;
  }

  .partner-right {
    border-left: 0;
    border-top: 1px solid rgba(148, 123, 95, 0.2);
    justify-content: center;
  }

  .partner-modal-head h2 {
    font-size: clamp(30px, 3.3vw, 36px);
  }

  .partner-modal-head p {
    max-width: none;
    font-size: clamp(9px, 1.35vw, 13px);
    white-space: nowrap;
  }

  .partner-steps li {
    font-size: clamp(12.5px, 1.04vw, 13.5px);
    min-height: 96px;
    padding: 10px 12px;
    border-radius: 20px;
    align-items: center;
  }

  .partner-steps li::after {
    display: none;
  }

  .partner-steps li:nth-child(odd):not(:last-child)::after {
    display: grid;
    right: -16px;
    top: 50%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
  }

  .partner-steps li:nth-child(2)::after {
    display: grid;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -15px;
    transform: translateX(-50%) rotate(90deg);
  }

  .partner-step-num {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .partner-apply-title {
    font-size: clamp(17px, 1.62vw, 19px);
    font-weight: 800;
  }

  .partner-field label,
  .partner-field legend {
    font-size: clamp(11.5px, 0.94vw, 13px);
  }

  .partner-apply input[type="text"],
  .partner-apply input[type="email"],
  .partner-apply input[type="tel"],
  .partner-choice-item {
    font-size: clamp(12.5px, 0.98vw, 13.5px);
  }

  .partner-ticket-card p {
    font-size: clamp(15px, 1.38vw, 16px);
  }

  .partner-ticket,
  .partner-ticket-plus {
    min-height: 56px;
    font-size: clamp(28px, 3.6vw, 32px);
  }

  .partner-right .partner-submit {
    min-height: 48px !important;
    width: min(260px, 100%);
    font-size: clamp(14.5px, 1.38vw, 16px) !important;
    margin-top: 0;
  }

  .partner-actions {
    justify-content: center;
    margin-top: 10px;
  }

  .partner-actions .btn-ghost {
    width: min(260px, 100%);
    min-height: 42px !important;
    font-size: clamp(13.5px, 1.2vw, 15px) !important;
  }

  .partner-note {
    font-size: clamp(10px, 0.95vw, 11.5px);
  }
}

@media (max-width: 700px) {
  .container,
  .container.slim {
    width: calc(100% - 20px);
  }

  .page {
    padding-bottom: 108px;
  }

  .nav {
    min-height: 72px;
    gap: 10px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

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

  .brand span {
    font-size: 31px;
  }

  .page .nav {
    min-height: 74px;
    justify-content: center;
  }

  .page .menu-toggle,
  .page .navlinks,
  .page .cta {
    display: none !important;
  }

  .page .brand {
    margin: 0 auto;
    overflow: visible;
  }

  .page .brand span {
    font-size: clamp(42px, 9.6vw, 52px);
    line-height: 1.14;
    padding-bottom: 7px;
    overflow: visible;
    display: block;
  }

  .cta .btn-ghost {
    display: none;
  }

  .cta .btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .home-page .hero-home {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .home-page .hero-home .container {
    width: 100%;
  }

  .home-page .hero-shell {
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .hero-shell::after {
    display: none;
  }

  .home-page .hero-shell.glass::before {
    display: none;
  }

  .home-page .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(300px, 98vw, 380px);
    object-position: 64% 44%;
    border-bottom: 0;
  }

  .home-page .hero-price-badge {
    left: 50%;
    top: calc(clamp(300px, 98vw, 380px) - 76px);
    transform: translateX(-50%);
    width: min(92vw, 720px);
    border-radius: 22px;
    padding: 10px 14px;
    text-align: center;
    justify-items: center;
  }

  .home-page .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 36px 32px;
    align-items: flex-start;
    text-align: left;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(247, 245, 244, 0.66) 0%, rgba(243, 241, 240, 0.54) 100%);
    backdrop-filter: blur(5px) saturate(104%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .home-contact-cta-wrap {
    padding: 0 0 10px;
  }

  .contact-trigger {
    width: auto;
    max-width: calc(100vw - 36px);
    justify-content: center;
  }

  .partner-trigger {
    width: auto;
    max-width: calc(100vw - 36px);
    justify-content: center;
  }

  .contact-modal-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100vh - 12px);
    border-radius: 18px;
    padding: 10px 9px 10px;
  }

  .partner-modal-dialog {
    width: calc(100vw - 10px);
    max-height: calc(100vh - 10px);
    border-radius: 18px;
    padding: 9px 8px 10px;
  }

  .partner-modal-close {
    right: 6px;
    top: 6px;
    width: 28px;
    height: 28px;
    font-size: 28px;
  }

  .contact-modal-head h2 {
    font-size: clamp(22px, 6.4vw, 28px);
    padding-bottom: 0 !important;
  }

  .contact-modal-head p {
    font-size: clamp(12px, 3.7vw, 14.5px);
    max-width: 32ch;
  }

  .partner-modal-head h2 {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .partner-modal-head p {
    font-size: clamp(8px, 2.1vw, 11px);
    white-space: nowrap;
    max-width: none;
  }

  .partner-how {
    padding: 9px 10px 9px;
  }

  .partner-how h3 {
    font-size: clamp(18px, 4.7vw, 22px);
    padding-bottom: 0 !important;
  }

  .partner-steps {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 8px;
  }

  .partner-left,
  .partner-right {
    padding: 10px;
  }

  .partner-steps li {
    font-size: clamp(12.5px, 3.6vw, 14px);
    min-height: 0;
    padding: 10px 12px;
    border-radius: 18px;
    align-items: center;
    justify-content: flex-start;
  }

  .partner-steps li:nth-child(odd):not(:last-child)::after,
  .partner-steps li:nth-child(2)::after {
    display: none;
  }

  .partner-steps li:nth-child(n):not(:last-child)::after {
    display: grid;
    content: "↓";
    right: auto;
    left: 50%;
    top: calc(100% + 6px);
    bottom: auto;
    transform: translateX(-50%);
    z-index: 3;
  }

  .partner-step-num {
    width: 28px;
    height: 28px;
    font-size: 19px;
  }

  .partner-left-check {
    font-size: clamp(12px, 3.2vw, 13px);
  }

  .contact-form {
    gap: 7px;
    margin-top: 8px;
  }

  .partner-apply-title {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 800;
  }

  .partner-field label,
  .partner-field legend {
    font-size: clamp(12px, 3.4vw, 13px);
  }

  .partner-choice-item,
  .partner-apply input[type="text"],
  .partner-apply input[type="email"],
  .partner-apply input[type="tel"] {
    font-size: 12.5px;
  }

  .partner-choice {
    gap: 8px 14px;
  }

  .partner-ticket-card p {
    font-size: clamp(15px, 4vw, 17px);
  }

  .partner-ticket {
    min-height: 50px;
    font-size: clamp(26px, 7.4vw, 30px);
  }

  .partner-ticket-plus {
    min-height: 50px;
    font-size: clamp(26px, 7.4vw, 30px);
  }

  .contact-choice {
    gap: 8px 14px;
  }

  .contact-choice-item {
    width: auto;
    font-size: clamp(12.5px, 3.8vw, 14px);
  }

  .contact-actions .btn,
  .contact-actions .btn-ghost {
    min-height: 39px !important;
    font-size: 13px !important;
  }

  .partner-right .partner-submit {
    min-height: 44px !important;
    width: 100%;
    max-width: 260px;
    font-size: 14px !important;
    margin-top: 0;
  }

  .partner-actions {
    justify-content: center;
    margin-top: 6px;
  }

  .partner-actions .btn-ghost {
    min-width: 0;
    width: 100%;
    max-width: 260px;
    min-height: 40px !important;
    font-size: 13px !important;
  }

  .partner-note {
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .home-page .hero-content h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(20px, 6.4vw, 26px);
    line-height: 1.08;
    max-width: 100%;
    color: #2f2930;
    letter-spacing: 0;
    text-shadow: none;
  }

  .home-page .hero-content .hero-nowrap {
    display: inline-block;
    white-space: nowrap;
  }

  .home-page .hero-content p {
    margin-top: 16px;
    font-family: var(--font-main);
    font-size: clamp(16px, 4.9vw, 19px);
    font-weight: 400;
    max-width: 265px;
    line-height: 1.4;
    color: #484347;
    text-shadow: none;
  }

  .home-page .hero-actions {
    display: none;
  }

  .home-page .hero-meta {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 110;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 8px 8px 9px;
    border: 1px solid rgba(143, 118, 90, 0.26);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(246, 241, 235, 0.8) 100%);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 30px rgba(53, 37, 22, 0.16);
  }

  .mobile-nav-item {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 14px;
    color: #8a7a67;
    background: transparent;
  }

  .mobile-nav-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(167, 131, 94, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 236, 223, 0.86) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    display: grid;
    place-items: center;
    color: #b28756;
  }

  .mobile-nav-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav-label {
    font-size: 11.5px;
    line-height: 1;
    font-weight: 600;
    color: #8a7a67;
  }

  .mobile-nav-item.active {
    background: transparent;
  }

  .mobile-nav-item.active .mobile-nav-icon {
    border-color: rgba(161, 117, 70, 0.5);
    background: linear-gradient(180deg, #d4aa75 0%, #b88957 100%);
    color: #fff;
    box-shadow: 0 5px 12px rgba(123, 86, 49, 0.22);
  }

  .mobile-nav-item.active .mobile-nav-label {
    color: #996a3b;
    font-weight: 700;
  }

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

  .mini-steps {
    grid-template-columns: 1fr;
  }

  .media-combo {
    grid-template-columns: 1fr;
  }

  .tab {
    font-size: 12px;
    padding: 8px 9px;
  }

  .track {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .cover {
    width: 48px;
    height: 48px;
  }

  .tcontrols {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

  .how-step {
    grid-template-columns: 1fr;
  }

  .how-step-num {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-basis: 50px;
    aspect-ratio: 1 / 1;
    font-size: 34px;
    line-height: 0.84;
    padding: 0 0 2px;
  }

  .how-step img {
    height: 150px;
  }

  .footer {
    padding-top: 22px;
  }

  .footer-social-title {
    width: auto;
    margin-right: 6px;
    margin-bottom: 0;
  }

  .footer-row {
    text-align: center;
    justify-content: center;
  }
}

/* ===== Refinement Pass 2 ===== */
.section-title {
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: clamp(38px, 2.9vw, 52px);
  color: #2d2621;
}

.section-title p {
  margin-top: 8px;
  font-size: 16px;
  color: #655c55;
}

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

.social-home {
  padding-top: 6px;
  padding-bottom: 8px;
}

.social-strip {
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-strip p {
  font-size: 14px;
  color: #5f5650;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.26) 100%);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(48, 41, 35, 0.9);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.9);
}

.social-links img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.text-steps .mini-step {
  padding: 12px;
}

.text-steps .mini-step div {
  align-items: flex-start;
}

.text-steps .mini-step small {
  display: block;
  margin-top: 8px;
  margin-left: 38px;
  color: #696059;
  line-height: 1.4;
  font-size: 14px;
}

.tabs-scroll {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 2px;
}

.tabs-scroll-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
}

.tabs-scroll-hint {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.64) 100%);
  color: rgba(167, 122, 75, 0.94);
  box-shadow: 0 8px 20px rgba(120, 88, 56, 0.2);
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.tabs-scroll-hint svg {
  width: 18px;
  height: 18px;
}

.tabs-scroll-hint.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.tabs-scroll-hint.is-pulse {
  animation: tabs-scroll-hint-pulse 1.45s ease-in-out infinite;
}

.tabs-scroll-hint-left {
  left: 6px;
}

.tabs-scroll-hint-right {
  right: 6px;
}

@keyframes tabs-scroll-hint-pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-50%) scale(1.08);
    filter: brightness(1.06);
  }
}

.catalog-page .tabs {
  flex-wrap: wrap;
  white-space: normal;
  width: 100%;
  min-width: 0;
  border-radius: 24px;
  padding: 12px;
  align-items: flex-start;
  row-gap: 10px;
}

.catalog-page .catalog-categories-top {
  margin-bottom: 14px;
}

.catalog-search {
  display: grid;
  gap: 6px;
  margin: 0 0 10px;
}

.catalog-search-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(80, 66, 53, 0.9);
  letter-spacing: 0.01em;
}

.catalog-search-field {
  position: relative;
}

.catalog-search-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: rgba(138, 109, 80, 0.74);
  pointer-events: none;
}

.catalog-search-input {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.45) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 10px 16px 10px 42px;
  font-size: 15px;
  color: rgba(69, 56, 45, 0.95);
}

.catalog-search-input::placeholder {
  color: rgba(113, 93, 74, 0.72);
}

.catalog-search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 3px rgba(191, 152, 105, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.catalog-page .catalog-categories-top + h1 {
  margin-top: 4px;
}

.catalog-page .tab:first-child {
  margin-left: 4px;
}

.catalog-page .player-shell::before {
  display: none;
}

.tabs-scroll::-webkit-scrollbar {
  height: 6px;
}

.tabs-scroll::-webkit-scrollbar-thumb {
  background: rgba(167, 122, 75, 0.35);
  border-radius: 999px;
}

.track-rich {
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 14px;
}

.track-main {
  min-width: 0;
}

.track-progress {
  margin-top: 8px;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: stretch;
}

.track.is-playing .track-progress {
  display: grid;
}

.track-progress-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.track-progress-times {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.track-progress-times .progress-time,
.track-progress-times .progress-dur {
  font-size: 11px;
  line-height: 1;
  color: rgba(90, 76, 62, 0.74);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.track-progress-times .progress-time {
  text-align: left;
}

.track-progress-times .progress-dur {
  text-align: right;
}

.track-seek {
  width: 100%;
  --pct: 0%;
  --track-h: 8px;
  --track-bg: #e7e4e1;
  --track-fill: #b88b57;
  appearance: none;
  -webkit-appearance: none;
  height: var(--track-h);
  border-radius: 999px;
  border: 1px solid rgba(171, 146, 113, 0.26);
  background:
    linear-gradient(90deg, var(--track-fill) 0%, var(--track-fill) var(--pct), var(--track-bg) var(--pct), var(--track-bg) 100%);
  box-shadow: inset 0 1px 2px rgba(39, 29, 19, 0.05);
}

.track-seek:disabled {
  opacity: 0.65;
}

.track.is-active .track-seek:disabled {
  opacity: 1;
}

.track-seek::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  height: var(--track-h);
}

.track-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: calc((var(--track-h) - 18px) / 2);
  border: 1px solid rgba(196, 158, 112, 0.68);
  background: radial-gradient(circle at 35% 32%, #f2debe 0%, #c79a63 58%, #a77643 100%);
  box-shadow: 0 4px 8px rgba(83, 61, 37, 0.2);
}

.track-seek::-moz-range-track {
  height: var(--track-h);
  border-radius: 999px;
  border: 0;
  background: transparent;
}

.track-seek::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(196, 158, 112, 0.68);
  background: radial-gradient(circle at 35% 32%, #f2debe 0%, #c79a63 58%, #a77643 100%);
  box-shadow: 0 4px 8px rgba(83, 61, 37, 0.2);
}

.reviews-grid-rich {
  grid-template-columns: 1fr 1fr;
}

.review-featured {
  grid-column: 1 / -1;
  padding: 14px;
}

.review.is-hidden {
  display: none;
}

.how-guide-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.guide-card {
  border-radius: 16px;
  padding: 14px;
}

.guide-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-head h3 {
  font-size: clamp(30px, 2.3vw, 38px);
  color: #2f2823;
}

.how-page .guide-head h3 {
  font-size: clamp(23px, 1.73vw, 29px);
}

.guide-card p {
  margin-top: 8px;
  color: #655c55;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

.guide-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #4f453d;
  display: grid;
  gap: 6px;
}

.guide-card li {
  line-height: 1.42;
  font-size: 16px;
  font-weight: 500;
}

.how-page .page-head .container.slim {
  text-align: center;
}

.how-page .page-head .container.slim p {
  max-width: 980px;
  margin: 10px auto 0;
}

@media (min-width: 901px) {
  .how-page .container.slim {
    width: min(1320px, calc(100% - 40px));
  }

  .how-page .how-guide-grid .guide-card {
    overflow: hidden;
  }

  .how-page .how-guide-grid .guide-card::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 44%;
    height: 76%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
  }

  .how-page .how-guide-grid .guide-card:nth-child(1)::after {
    background-image: url("../icons/how-pattern-1.svg");
  }

  .how-page .how-guide-grid .guide-card:nth-child(2)::after {
    background-image: url("../icons/how-pattern-2.svg");
  }

  .how-page .how-guide-grid .guide-card:nth-child(3)::after {
    background-image: url("../icons/how-pattern-3.svg");
  }

  .how-page .how-guide-grid .guide-card:nth-child(4)::after {
    background-image: url("../icons/how-pattern-4.svg");
  }

  .how-page .page-head p {
    font-size: clamp(18px, 1.2vw, 22px);
    line-height: 1.42;
    font-weight: 500;
  }

  .how-page .guide-head h3 {
    font-size: clamp(23px, 1.5vw, 30px);
  }

  .how-page .guide-card p {
    font-size: 18px;
    line-height: 1.46;
    font-weight: 500;
  }

  .how-page .guide-card ul {
    gap: 8px;
  }

  .how-page .guide-card li {
    font-size: 17px;
    line-height: 1.44;
    font-weight: 500;
  }
}

.track-like-btn {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f0b8c8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.track-like-btn::before {
  content: "";
  position: absolute;
  inset: -11px;
}

.track-like-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.track-like-btn:hover {
  color: #e9a8bd;
}

.track-like-btn:active {
  transform: translateY(1px);
}

.like-order-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.like-order-modal[hidden] {
  display: none;
}

.like-order-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 31, 20, 0.4);
}

.like-order-dialog {
  position: relative;
  width: min(520px, 100%);
  border-radius: 20px;
  padding: 22px 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 249, 238, 0.95) 56%, rgba(243, 224, 193, 0.88) 100%);
  box-shadow:
    0 18px 42px rgba(132, 95, 54, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -14px 28px rgba(195, 154, 101, 0.18);
  backdrop-filter: blur(10px) saturate(116%);
}

.like-order-dialog h3 {
  font-size: clamp(28px, 2vw, 34px);
  color: #6b4a2a;
}

.like-order-dialog p {
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  color: #6a5340;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.like-order-track {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(203, 164, 113, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 234, 213, 0.78) 100%);
  font-weight: 700;
  color: #805932;
}

.like-order-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.like-order-actions .btn,
.like-order-actions .btn-ghost {
  min-width: 118px;
  min-height: 50px;
  padding: 11px 28px !important;
  line-height: 1;
}

@media (max-width: 1180px) {
  .cards-grid-all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .cards-grid-all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid-rich {
    grid-template-columns: 1fr;
  }

  .review-featured {
    grid-column: auto;
  }

  .how-guide-grid {
    grid-template-columns: 1fr;
  }

  .catalog-page .player-toolbar {
    grid-template-columns: 1fr;
  }

  .track-rich {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .cover {
    width: 120px;
    height: 74px;
  }

  .cover-play {
    width: 38px;
    height: 38px;
  }

  .catalog-page .catalog-categories-top {
    margin-bottom: 10px;
  }

  .catalog-page .tabs-scroll-wrap {
    padding-inline: 30px;
  }

  .catalog-page .tabs.tabs-scroll {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    row-gap: 0;
    padding: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 10px;
  }

  .catalog-page .tabs.tabs-scroll .tab {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .catalog-page .tabs.tabs-scroll::-webkit-scrollbar {
    display: none;
  }

  .catalog-page .tabs-scroll-hint {
    display: inline-flex;
  }

  .catalog-page .tab:first-child {
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .cards-grid-all {
    grid-template-columns: 1fr;
  }

  .social-strip {
    align-items: stretch;
  }

  .social-links {
    width: 100%;
  }

  .social-links a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .track-rich {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
  }

  .track-main {
    grid-column: auto;
  }

  .track-progress-row {
    gap: 8px;
  }

  .track-like-btn svg {
    width: 20px;
    height: 20px;
  }

  .cover {
    width: 96px;
    height: 62px;
  }

  .cover-play {
    width: 32px;
    height: 32px;
  }

  .cover-play svg {
    width: 18px;
    height: 18px;
  }

  .catalog-page .tabs {
    border-radius: 18px;
    padding: 10px;
    gap: 8px 10px;
  }

  .catalog-page .tab:first-child {
    margin-left: 0;
  }

  .catalog-page .tab {
    padding: 7px 12px;
    line-height: 1.1;
  }

  .catalog-search {
    gap: 5px;
    margin-bottom: 8px;
  }

  .catalog-search-label {
    font-size: 12px;
  }

  .catalog-search-input {
    min-height: 40px;
    padding: 9px 14px 9px 38px;
    font-size: 14px;
  }

  .catalog-search-field svg {
    left: 12px;
    width: 17px;
    height: 17px;
  }

  .guide-head {
    align-items: center;
    gap: 10px;
  }

  .like-order-actions {
    justify-content: center;
    gap: 12px;
  }

  .like-order-actions .btn,
  .like-order-actions .btn-ghost {
    flex: 1 1 calc(50% - 8px);
    min-width: 124px;
    max-width: 170px;
    min-height: 50px !important;
    padding: 10px 20px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tabs-scroll-hint.is-pulse {
    animation: none;
  }
}

@media (max-width: 900px) and (pointer: coarse) {
  .catalog-page .tabs.tabs-scroll {
    touch-action: pan-x;
  }

  .catalog-page .tabs.tabs-scroll .tab {
    touch-action: manipulation;
  }

  .cover-play {
    touch-action: manipulation;
  }

  .cover-play::before {
    content: "";
    position: absolute;
    inset: -11px;
    border-radius: 999px;
    background: transparent;
  }

  .track-seek {
    --touch-h: 34px;
    height: var(--touch-h);
    margin-block: calc((var(--track-h) - var(--touch-h)) / 2);
    border: 0;
    background:
      linear-gradient(90deg, var(--track-fill) 0%, var(--track-fill) var(--pct), var(--track-bg) var(--pct), var(--track-bg) 100%)
      center / 100% var(--track-h) no-repeat;
    box-shadow: none;
    touch-action: pan-y;
  }

  .track-seek::-webkit-slider-runnable-track {
    height: var(--touch-h);
    background: transparent;
    border: 0;
  }

  .track-seek::-webkit-slider-thumb {
    margin-top: calc((var(--touch-h) - 18px) / 2);
  }

  .track-seek::-moz-range-track {
    height: var(--touch-h);
    background: transparent;
    border: 0;
  }
}

/* Master typography override */
:root {
  --ink-deep: #4a4038;
  --ink-mid: #5f554e;
  --font-site: "Manrope", "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--font-site) !important;
  color: var(--ink-deep) !important;
  line-height: 1.38 !important;
  font-size: 16px !important;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-content h1,
.page-head h1,
.how-title,
.np-title,
.guide-head h3,
.order-stage h3,
.section-title h2,
.panel .head h3,
.premium-card h2,
.rname,
.tmeta .title,
.brand span {
  font-family: var(--font-site) !important;
  color: var(--ink-deep) !important;
  letter-spacing: 0.004em !important;
  font-weight: 700 !important;
  line-height: 1.24 !important;
  padding-bottom: 10px !important;
}

p,
li,
small,
label,
input,
select,
textarea,
option,
.navlinks a,
.tab,
.rdate,
.rtext,
.note,
.footer,
.footer-social-title,
.duration,
.time,
.panel .head p,
.guide-card p,
.guide-card li,
.premium-card p,
.check-list li,
.form-hero p,
.order-stage p,
.text-steps .mini-step small,
.tmeta .sub,
.mobile-nav-label {
  font-family: var(--font-site) !important;
  color: var(--ink-mid) !important;
  letter-spacing: 0.002em !important;
  font-weight: 500 !important;
}

/* Gold buttons: same font as whole site, including inner spans */
.btn,
a.btn,
button.btn,
.hero-btn,
.cta .btn,
.btn > span,
a.btn > span,
button.btn > span,
#orderSubmit,
.how-bottom .btn,
.inline-cta .btn,
.card-link.btn {
  font-family: var(--font-site) !important;
  font-weight: 600 !important;
  letter-spacing: 0.004em !important;
  color: #fff7ea !important;
  text-shadow: 0 1px 0 rgba(118, 82, 46, 0.58), 0 0 8px rgba(255, 231, 196, 0.34) !important;
}

.btn-ghost,
a.btn-ghost,
button.btn-ghost {
  font-family: var(--font-site) !important;
  font-weight: 600 !important;
  color: var(--ink-deep) !important;
}

@media (min-width: 901px) {
  body {
    font-size: 15px !important;
  }

  .navlinks a {
    font-size: 16px !important;
  }

  .btn,
  .btn-ghost {
    font-size: 17px !important;
    min-height: 50px !important;
    padding: 11px 22px !important;
  }

  .premium-card p,
  .guide-card p,
  .guide-card li,
  .rtext,
  .check-list li,
  .panel .head p,
  .form-hero p,
  .order-stage p,
  .field input,
  .field select,
  .field textarea,
  .np-sub {
    font-size: 16px !important;
    line-height: 1.42 !important;
  }

  .field label,
  .tmeta .sub,
  .rdate,
  .note,
  .duration,
  .time,
  .footer,
  .footer-social-title,
  .social-links a,
  .toolbar-more {
    font-size: 14px !important;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 14px !important;
  }

  .navlinks a {
    font-size: 15px !important;
  }

  .btn,
  .btn-ghost {
    font-size: 16px !important;
    min-height: 46px !important;
    padding: 10px 20px !important;
  }

  .guide-card p,
  .guide-card li,
  .premium-card p,
  .check-list li,
  .panel .head p,
  .form-hero p,
  .order-stage p,
  .field input,
  .field select,
  .field textarea,
  .rtext,
  .np-sub {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .field label,
  .tmeta .sub,
  .rdate,
  .note,
  .duration,
  .time,
  .footer,
  .footer-social-title {
    font-size: 13px !important;
  }
}

@media (max-width: 700px) {
  .order-form-error {
    font-size: 13px;
    margin: 8px 10px 0;
    padding: 9px 10px;
  }

  .field-error {
    font-size: 12px;
  }

  .order-success-dialog {
    width: 92vw;
    max-width: 92vw;
    border-radius: 18px;
    padding: 14px 12px 12px;
  }

  .order-success-dialog h3 {
    font-size: clamp(21px, 6vw, 26px);
  }

  .order-success-dialog p {
    font-size: clamp(14px, 4.3vw, 17px);
    line-height: 1.38;
  }

  .order-success-actions {
    gap: 8px;
  }

  .order-success-actions .btn,
  .order-success-actions .btn-ghost {
    width: min(300px, 100%);
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 112px;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .footer-row > div:first-child {
    order: 2;
  }

  .footer-row > .footer-social {
    order: 1;
    width: auto;
    justify-content: center;
  }

  .footer-social-title {
    margin-right: 8px;
  }

  .mobile-bottom-nav {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 0;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(143, 118, 90, 0.34);
    border-radius: 0;
    box-shadow: 0 -10px 24px rgba(53, 37, 22, 0.14);
  }

  .mobile-nav-item {
    min-height: 60px;
    gap: 6px;
    border-radius: 0;
  }

  .mobile-nav-icon {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #ae8250;
  }

  .mobile-nav-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.95;
  }

  .mobile-nav-item.active .mobile-nav-icon {
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #9a6b3b;
  }
}

/* Targeted heading scale update (-20%) */
.order-page .page-head h1 {
  font-size: clamp(22px, 2.04vw, 33px);
}

.order-page .form-hero h2 {
  font-size: clamp(23px, 1.68vw, 31px);
}

.order-page .order-stage h3 {
  font-size: clamp(18px, 1.32vw, 24px);
}

.reviews-page .page-head h1 {
  font-size: clamp(22px, 2.04vw, 33px);
}

.reviews-page .panel .head h3 {
  font-size: clamp(21px, 1.5vw, 28px);
}

.how-page .page-head h1 {
  font-size: clamp(22px, 2.04vw, 33px);
}

.how-page .how-title {
  font-size: clamp(24px, 1.8vw, 33px);
}

.how-page .guide-head h3 {
  font-size: clamp(18px, 1.2vw, 24px);
}

/* Home hero typography (custom premium style) */
.home-page .hero-content .hero-title {
  margin: 0;
  padding-bottom: 0 !important;
  max-width: none;
  font-family: "Prata", "Times New Roman", serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.002em !important;
  line-height: 1.06 !important;
  color: #4b3226 !important;
  text-shadow: none;
  text-wrap: pretty;
}

.home-page .hero-content .hero-subtitle {
  margin-top: 14px;
  padding-bottom: 0 !important;
  max-width: none;
  font-family: "Prata", "Times New Roman", serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.001em !important;
  line-height: 1.14 !important;
  color: #1f1813 !important;
  text-shadow: none;
  text-wrap: pretty;
}

.home-page .hero-content .hero-title-line,
.home-page .hero-content .hero-subline {
  display: block;
}

@media (min-width: 901px) {
  .home-page .hero-content .hero-title {
    font-size: clamp(48px, 3.6vw, 64px) !important;
  }

  .home-page .hero-content .hero-subtitle {
    font-size: clamp(20px, 1.56vw, 27px) !important;
  }

  .home-page .hero-content .hero-title-line,
  .home-page .hero-content .hero-subline {
    white-space: nowrap;
  }
}

@media (min-width: 921px) {
  .home-page .hero-content {
    padding-top: clamp(220px, 16vw, 320px);
    padding-bottom: clamp(14px, 1.2vw, 20px);
  }

  .home-page .hero-actions {
    margin-top: clamp(14px, 1.6vw, 22px);
  }
}

@media (max-width: 700px) {
  .home-page .hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 26px 22px 30px;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(180deg, rgba(248, 245, 241, 0.86) 0%, rgba(248, 245, 241, 0.98) 24%, #f8f5f1 100%);
    box-shadow: none;
  }

  .home-page .hero-content::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -96px;
    height: 102px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(248, 245, 241, 0) 0%, rgba(248, 245, 241, 0.94) 72%, #f8f5f1 100%);
    z-index: 0;
  }

  .home-page .hero-content > * {
    position: relative;
    z-index: 1;
  }

  .home-page .hero-content .hero-title {
    font-size: clamp(27px, 8.2vw, 40px) !important;
    line-height: 1.07 !important;
  }

  .home-page .hero-content .hero-subtitle {
    margin-top: 12px;
    font-size: clamp(15px, 4.9vw, 21px) !important;
    line-height: 1.16 !important;
  }

  .home-page .hero-content .hero-title-line,
  .home-page .hero-content .hero-subline {
    white-space: nowrap;
    text-align: left;
  }

  .home-page .hero-price-badge {
    top: calc(clamp(300px, 98vw, 380px) - 70px);
    width: min(94vw, 560px);
    padding: 9px 14px;
    gap: 0;
    border-radius: 999px;
    border-width: 1.8px;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    justify-items: center;
    background:
      radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 42%),
      linear-gradient(180deg, rgba(255, 254, 251, 0.84) 0%, rgba(246, 236, 220, 0.8) 100%);
    box-shadow:
      0 10px 24px rgba(121, 87, 52, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      inset 0 -1px 8px rgba(214, 184, 145, 0.28);
  }

  .home-page .hero-price-badge::before {
    inset: 7px;
    border-width: 1.6px;
  }

  .home-page .hero-price-badge::after {
    opacity: 0.62;
  }

  .home-page .hero-price-main,
  .home-page .hero-price-sub {
    display: none;
  }

  .home-page .hero-price-mobile-line {
    display: block;
    white-space: nowrap;
    font-size: clamp(13px, 4.1vw, 19px);
    line-height: 1.08;
    letter-spacing: 0.005em;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: rgba(90, 64, 40, 0.96);
    font-weight: 700;
  }

}

/* Catalog page layout refinement */
.catalog-page .page-head .container.slim {
  text-align: center;
}

.reviews-page .page-head .container.slim {
  text-align: center;
}

.order-page .page-head .container.slim,
.order-page .form-hero {
  text-align: center;
}

.order-page .page-head .container.slim p,
.order-page .form-hero p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 901px) {
  .order-page .container.slim {
    width: min(1320px, calc(100% - 40px));
  }

  .reviews-page .container.slim {
    width: min(1320px, calc(100% - 40px));
  }

  .catalog-page .container.slim {
    width: min(1320px, calc(100% - 40px));
  }

  .catalog-page .track-rich {
    grid-template-columns: 176px minmax(0, 1fr);
    gap: 16px;
  }

  .catalog-page .cover {
    width: 176px;
    height: 106px;
  }
}

/* iOS mobile form stability: prevent viewport zoom/side shifting on input focus */
@media (max-width: 900px) {
  .order-page {
    overflow-x: hidden;
  }

  .order-page main {
    overflow-x: clip;
  }

  .order-page .field input,
  .order-page .field select,
  .order-page .field textarea {
    font-size: 16px !important;
    line-height: 1.38 !important;
  }

  .contact-modal,
  .partner-modal {
    overflow-x: hidden;
  }

  .contact-modal-dialog,
  .partner-modal-dialog {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea,
  .partner-apply input[type="text"],
  .partner-apply input[type="email"],
  .partner-apply input[type="tel"] {
    font-size: 16px !important;
    line-height: 1.36 !important;
  }
}

@media (max-width: 700px) {
  .home-page #examples .premium-grid > .premium-card-center {
    order: 1;
  }

  .home-page #examples .premium-grid > .premium-card-summary {
    order: 2;
  }

  .home-page #examples .premium-grid > .premium-card-how {
    order: 3;
  }

  .topbar {
    transition: top 0.28s ease, opacity 0.24s ease, box-shadow 0.24s ease;
    will-change: top, opacity;
  }

  body.mobile-hide-topbar .topbar {
    top: calc(-1 * (88px + env(safe-area-inset-top)));
    opacity: 0.02;
    box-shadow: none;
    pointer-events: none;
  }

  .mobile-bottom-nav {
    transition: transform 0.26s ease, opacity 0.22s ease, box-shadow 0.22s ease;
    will-change: transform, opacity;
  }

  body.mobile-hide-bottom-nav .mobile-bottom-nav,
  body.mobile-input-active .mobile-bottom-nav {
    transform: translateY(calc(120% + env(safe-area-inset-bottom)));
    opacity: 0;
    box-shadow: none;
    pointer-events: none;
  }
}

/* SongForSoul promo/certificate modal alignment */
.sf-modal-overlay {
  position: fixed !important;
  inset: 0;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.sf-modal-overlay[hidden] {
  display: none !important;
}

.sf-modal-card {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin: 0 !important;
  width: min(92vw, 820px);
  max-width: 820px;
  max-height: 85vh;
  overflow: auto;
  overflow-x: hidden;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Partner modal premium compact redesign */
#partnerModal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

#partnerModal[hidden] {
  display: none;
}

#partnerModal .partner-modal-backdrop {
  background: transparent;
  backdrop-filter: none;
}

#partnerModal .partner-modal-dialog {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: 2;
  width: min(92vw, 820px);
  max-width: 820px;
  max-height: 85vh;
  overflow: auto;
  overflow-x: hidden;
  border-radius: 20px;
  padding: 20px;
  border: 2px solid rgba(255, 248, 236, 0.94) !important;
  background:
    linear-gradient(180deg, rgba(250, 243, 234, 0.9) 0%, rgba(239, 227, 212, 0.82) 100%),
    url("../media/bg-header-soft.webp") center / cover no-repeat !important;
  box-shadow:
    0 20px 46px rgba(34, 24, 16, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

#partnerModal .partner-modal-dialog::before,
#partnerModal .partner-modal-dialog::after,
#partnerModal .partner-modal-head {
  display: none;
}

#partnerModal .partner-main {
  margin-top: 0;
}

#partnerModal .partner-form {
  display: grid;
  gap: 12px;
}

#partnerModal .partner-form.hidden {
  display: none !important;
}

#partnerModal .partner-form .order-form-error {
  margin: 0;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.4;
}

#partnerModal .partner-how.partner-how-visual {
  border-radius: 16px;
  border: 1.5px solid rgba(250, 240, 224, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  padding: 16px;
}

#partnerModal .partner-how-visual h3 {
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(180deg, rgba(244, 212, 164, 0.98) 0%, rgba(206, 162, 104, 0.94) 100%);
  box-shadow:
    0 8px 16px rgba(117, 83, 46, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 30px;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: 0.004em;
  color: #5a3b22 !important;
}

#partnerModal .partner-how-visual h3 .partner-money-mark {
  color: #9a6a3d !important;
  font-weight: 700 !important;
  white-space: nowrap;
}

#partnerModal .partner-benefits {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

#partnerModal .partner-benefits-glow,
#partnerModal .partner-illus {
  display: none;
}

#partnerModal .partner-benefit-card {
  border-radius: 16px;
  border: 1.5px solid rgba(250, 239, 223, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.26) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(94, 70, 44, 0.1);
  padding: 14px 14px 12px;
  min-height: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

#partnerModal .partner-benefit-card::before {
  display: none;
}

#partnerModal .partner-benefit-ribbon {
  position: static;
  transform: none;
  display: block;
  min-height: 0;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: none;
  color: #6c4a2a;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 24px;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
}

#partnerModal .partner-benefit-ribbon::before,
#partnerModal .partner-benefit-ribbon::after {
  display: none !important;
}

#partnerModal .partner-benefit-amount {
  margin: 4px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 54px;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #8f6134 !important;
  white-space: nowrap;
  display: inline-block;
}

#partnerModal .partner-benefit-title,
#partnerModal .partner-benefit-title-wide {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 18px;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  color: #583f2b !important;
  white-space: nowrap;
}

#partnerModal .partner-benefit-title {
  font-size: 30px;
}

#partnerModal .partner-benefit-text {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 17px;
  line-height: 1.1 !important;
  color: rgba(85, 66, 51, 0.96) !important;
  white-space: nowrap;
}

#partnerModal .partner-benefit-note {
  margin-top: auto;
  padding-top: 4px;
  font-size: 15px;
  line-height: 1.18 !important;
  color: rgba(90, 75, 62, 0.9) !important;
}

#partnerModal .partner-left-check {
  display: none !important;
}

#partnerModal .partner-left-check::before,
#partnerModal .partner-left-check::after {
  display: none;
}

#partnerModal .partner-shield-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(248, 228, 189, 0.98) 0%, rgba(215, 172, 112, 0.95) 100%);
  border: 1px solid rgba(181, 134, 80, 0.72);
}

#partnerModal .partner-shield-icon::before {
  display: none;
}

#partnerModal .partner-benefit-card-client .partner-benefit-text,
#partnerModal .partner-benefit-card-client .partner-benefit-note {
  white-space: nowrap;
}

#partnerModal .partner-shell {
  border-radius: 16px;
  border: 1.5px solid rgba(250, 239, 223, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.24) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 230px);
  grid-template-areas:
    "title title"
    "left right";
  overflow: hidden;
}

#partnerModal .partner-apply-title {
  grid-area: title;
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(171, 140, 104, 0.2);
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 22px;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  color: rgba(73, 58, 46, 0.97) !important;
}

#partnerModal .partner-left {
  grid-area: left;
  padding: 14px;
  border-top: 0;
}

#partnerModal .partner-right {
  grid-area: right;
  border-top: 0;
  border-left: 1px solid rgba(162, 131, 99, 0.24);
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.16) 100%);
}

#partnerModal .partner-apply {
  margin-top: 0;
  padding-top: 0;
  display: grid;
  gap: 10px;
}

#partnerModal .partner-field {
  margin: 0;
  gap: 4px;
}

#partnerModal .partner-field label,
#partnerModal .partner-field legend {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(73, 60, 48, 0.96) !important;
}

#partnerModal .partner-choice {
  gap: 8px 14px;
  flex-wrap: wrap;
}

#partnerModal .partner-choice legend {
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
}

#partnerModal .partner-choice-item {
  font-size: 14px;
  font-weight: 500 !important;
  color: rgba(80, 66, 54, 0.96) !important;
}

#partnerModal .partner-choice-item input[type="radio"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 1.5px solid rgba(191, 150, 101, 0.88);
}

#partnerModal .partner-choice-item input[type="radio"]::before {
  width: 7px;
  height: 7px;
}

#partnerModal .partner-apply input[type="text"],
#partnerModal .partner-apply input[type="email"],
#partnerModal .partner-apply input[type="tel"] {
  width: 100%;
  max-width: 100%;
  height: 42px;
  min-height: 42px;
  border-radius: 12px;
  border: 1.5px solid rgba(242, 228, 207, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.62) 100%);
  color: rgba(80, 66, 53, 0.96);
  font-size: 14px;
  line-height: 1.4;
  padding: 0 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 1px 2px rgba(110, 79, 44, 0.06);
}

#partnerModal .partner-apply input[type="text"]::placeholder,
#partnerModal .partner-apply input[type="email"]::placeholder,
#partnerModal .partner-apply input[type="tel"]::placeholder {
  color: rgba(105, 90, 75, 0.75);
}

#partnerModal #partnerSubmit.partner-submit {
  width: 100%;
  max-width: 100%;
  height: 44px;
  min-height: 44px !important;
  border-radius: 999px;
  border: 1px solid rgba(180, 137, 88, 0.84) !important;
  background: linear-gradient(180deg, rgba(223, 188, 141, 0.97) 0%, rgba(186, 146, 94, 0.92) 100%) !important;
  box-shadow: 0 8px 16px rgba(120, 85, 48, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  padding: 0 14px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: var(--font-main) !important;
  line-height: 1 !important;
  white-space: nowrap;
}

#partnerModal #partnerSubmit.partner-submit > span {
  line-height: 1;
}

#partnerModal .partner-actions {
  margin-top: 0;
  width: 100%;
}

#partnerModal .partner-actions .btn-ghost {
  width: 100%;
  max-width: 100%;
  height: 44px;
  min-height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(247, 236, 220, 0.95) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.5) 100%) !important;
  padding: 0 14px !important;
  font-size: 14px !important;
  font-family: var(--font-main) !important;
  color: rgba(82, 66, 54, 0.95) !important;
  line-height: 1 !important;
  white-space: nowrap;
}

#partnerModal .partner-note {
  display: none;
}

#partnerModal .partner-success {
  margin-top: 2px;
  border-radius: 16px;
  border: 1.5px solid rgba(250, 239, 223, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.28) 100%);
  padding: 16px;
  display: none;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

#partnerModal .partner-success.hidden {
  display: none !important;
}

#partnerModal.is-success .partner-form {
  display: none !important;
}

#partnerModal.is-success .partner-success {
  display: grid !important;
}

#partnerModal .partner-success h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(73, 58, 46, 0.97);
}

#partnerModal .partner-success p {
  margin: 0;
  max-width: 500px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(82, 70, 60, 0.95);
}

#partnerModal .partner-success .btn {
  width: auto;
  max-width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

@media (max-width: 640px) {
  .sf-modal-overlay {
    padding: 14px;
  }

  .sf-modal-card {
    width: min(94vw, 520px);
    border-radius: 18px;
    padding: 15px;
  }

  #partnerModal .partner-modal-dialog {
    width: min(94vw, 520px);
    max-height: 85vh;
    border-radius: 18px;
    padding: 15px;
  }

  #partnerModal .partner-how.partner-how-visual {
    padding: 14px;
  }

  #partnerModal .partner-how-visual h3 {
    font-size: 20px;
    line-height: 1.25 !important;
  }

  #partnerModal .partner-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #partnerModal .partner-benefit-card {
    padding: 12px;
  }

  #partnerModal .partner-benefit-amount {
    font-size: 32px;
  }

  #partnerModal .partner-benefit-title,
  #partnerModal .partner-benefit-title-wide {
    font-size: 14px;
  }

  #partnerModal .partner-benefit-text {
    font-size: 13px;
  }

  #partnerModal .partner-benefit-note {
    font-size: 13px;
  }

  #partnerModal .partner-left-check {
    font-size: 12px;
    padding: 8px 12px;
  }

  #partnerModal .partner-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "left"
      "right";
  }

  #partnerModal .partner-apply-title {
    font-size: 20px;
    padding: 10px 12px;
  }

  #partnerModal .partner-left,
  #partnerModal .partner-right {
    padding: 12px;
  }

  #partnerModal .partner-right {
    border-left: 0;
    border-top: 1px solid rgba(162, 131, 99, 0.24);
  }

  #partnerModal .partner-field label,
  #partnerModal .partner-field legend,
  #partnerModal .partner-choice-item,
  #partnerModal .partner-apply input[type="text"],
  #partnerModal .partner-apply input[type="email"],
  #partnerModal .partner-apply input[type="tel"] {
    font-size: 13px;
  }

  #partnerModal .partner-apply input[type="text"],
  #partnerModal .partner-apply input[type="email"],
  #partnerModal .partner-apply input[type="tel"] {
    height: 40px;
    min-height: 40px;
  }

  #partnerModal #partnerSubmit.partner-submit,
  #partnerModal .partner-actions .btn-ghost,
  #partnerModal .partner-success .btn {
    height: 44px;
    min-height: 44px !important;
    font-size: 14px !important;
  }

  #partnerModal .partner-success h3 {
    font-size: 20px;
  }

  #partnerModal .partner-success p {
    font-size: 13px;
  }
}

.certificate-teaser {
  margin-top: 4px;
  gap: 12px;
  padding: 10px;
  display: grid;
  justify-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(247, 239, 230, 0.56) 100%);
}

.certificate-teaser-image {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 1148 / 730;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(86, 62, 37, 0.16);
}

.certificate-teaser-btn {
  width: min(100%, 320px);
}

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.certificate-modal[hidden] {
  display: none;
}

.certificate-modal-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
}

.certificate-modal-dialog {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  z-index: 2;
  width: min(92vw, 820px);
  max-width: 820px;
  max-height: 85vh;
  overflow: auto;
  overflow-x: hidden;
  border-radius: 20px;
  padding: 20px;
  border: 2px solid rgba(255, 250, 241, 0.9) !important;
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.9) 0%, rgba(242, 234, 223, 0.84) 100%),
    url("../media/bg-header-soft.webp") center / cover no-repeat !important;
  box-shadow:
    0 24px 54px rgba(37, 27, 19, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

#partnerModal img,
#certificateModal img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.certificate-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  align-items: start;
  gap: 16px;
}

.certificate-modal-visual {
  padding-right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.certificate-modal-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 243, 230, 0.9);
  box-shadow: 0 10px 20px rgba(86, 62, 37, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.certificate-modal-main {
  min-width: 0;
  border-radius: 18px;
  border: 1.5px solid rgba(255, 246, 234, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.34) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  padding: 20px;
}

.certificate-modal-head {
  text-align: left;
}

.certificate-modal-head h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(61, 49, 40, 0.98);
}

.certificate-modal-head p {
  max-width: 420px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(80, 71, 65, 0.94);
}

.certificate-modal-head p + p {
  margin-top: 10px;
}

.certificate-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.certificate-form .order-form-error {
  margin: 0 0 2px;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.4;
}

.certificate-field {
  display: grid;
  gap: 4px;
}

.certificate-field input[type="text"],
.certificate-field input[type="email"],
.certificate-field input[type="tel"] {
  width: 100%;
  height: 42px;
  min-height: 42px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.48) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  padding: 0 14px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(66, 55, 45, 0.96);
}

.certificate-field input[type="text"]::placeholder,
.certificate-field input[type="email"]::placeholder,
.certificate-field input[type="tel"]::placeholder {
  color: rgba(97, 86, 75, 0.72);
}

.certificate-field input[type="text"]:focus,
.certificate-field input[type="email"]:focus,
.certificate-field input[type="tel"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 3px rgba(191, 152, 105, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.certificate-choice {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: nowrap;
}

.certificate-choice-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(66, 54, 44, 0.96);
  font-weight: 500;
  font-family: var(--font-main);
}

.certificate-choice-item input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.62) 100%);
  border: 1.5px solid rgba(192, 153, 109, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 1px 2px rgba(56, 43, 31, 0.12);
  display: grid;
  place-items: center;
}

.certificate-choice-item input[type="radio"]::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  transform: scale(0);
  transition: transform 0.14s ease;
  background: linear-gradient(180deg, rgba(197, 150, 96, 0.98) 0%, rgba(158, 112, 61, 0.96) 100%);
}

.certificate-choice-item input[type="radio"]:checked::before {
  transform: scale(1);
}

.certificate-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.45fr);
  gap: 10px;
  align-items: center;
}

.certificate-actions .btn,
.certificate-actions .btn-ghost {
  width: 100%;
  height: 44px;
  min-height: 44px !important;
  border-radius: 999px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.certificate-actions .btn {
  border: 1px solid rgba(168, 129, 82, 0.52);
  background: linear-gradient(180deg, rgba(220, 188, 139, 0.9) 0%, rgba(189, 148, 93, 0.88) 100%);
  color: #fff8ec;
}

.certificate-actions .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.5) 100%);
  color: rgba(73, 62, 54, 0.92);
}

.certificate-success {
  margin-top: 0;
  display: none;
  min-height: 100%;
  align-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.certificate-success.hidden {
  display: none !important;
}

.certificate-modal.is-success .certificate-default-content {
  display: none !important;
}

.certificate-modal.is-success .certificate-success {
  display: grid !important;
}

.certificate-modal.is-loading #certificateSubmit {
  pointer-events: none;
}

.certificate-modal #certificateSubmit.is-busy::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 247, 233, 0.45);
  border-top-color: #fff7ea;
  vertical-align: -2px;
  animation: certificate-spin 0.85s linear infinite;
}

@keyframes certificate-spin {
  to {
    transform: rotate(360deg);
  }
}

.certificate-success h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: rgba(64, 54, 46, 0.98);
}

.certificate-success p {
  max-width: 380px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(77, 65, 56, 0.97);
}

.certificate-success .btn {
  width: min(220px, 100%);
  height: 44px;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
}

.certificate-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1120px) {
  .certificate-modal {
    padding: 16px;
  }

  .certificate-modal-dialog {
    width: min(92vw, 820px);
    max-height: 85vh;
  }

  .certificate-modal-layout {
    grid-template-columns: minmax(0, 38%) minmax(0, 62%);
    gap: 14px;
  }

  .certificate-modal-visual {
    padding-right: 0;
  }

  .certificate-modal-main {
    padding: 18px;
  }

  .certificate-modal-head h2 {
    font-size: 21px;
  }

  .certificate-modal-head p {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .certificate-teaser {
    padding: 9px;
  }

  .certificate-modal {
    padding: 14px;
  }

  .certificate-modal-dialog {
    width: min(94vw, 520px);
    max-height: 85vh;
    border-radius: 18px;
    padding: 15px;
  }

  .certificate-modal-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .certificate-modal-visual {
    padding-right: 0;
  }

  .certificate-modal-main {
    border-radius: 16px;
    padding: 15px;
  }

  .certificate-modal-visual img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    max-height: 220px;
    object-fit: contain;
  }

  .certificate-modal-head h2 {
    font-size: 19px;
    line-height: 1.25;
  }

  .certificate-modal-head p {
    font-size: 13px;
  }

  .certificate-form {
    margin-top: 10px;
    gap: 10px;
  }

  .certificate-field input[type="text"],
  .certificate-field input[type="email"],
  .certificate-field input[type="tel"] {
    height: 42px;
    min-height: 42px;
    font-size: 14px;
    padding: 0 12px;
  }

  .certificate-choice-item {
    font-size: 14px;
  }

  .certificate-choice-item input[type="radio"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .certificate-actions {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .certificate-actions .btn,
  .certificate-actions .btn-ghost {
    min-height: 44px !important;
    font-size: 14px !important;
  }

  .certificate-success h3 {
    font-size: 19px;
  }

  .certificate-success p {
    font-size: 13px;
  }
}

/* Final polish overrides: home hero + partner modal + certificate modal */
@media (min-width: 921px) {
  .home-page .hero-content {
    max-width: min(560px, 50%) !important;
    padding-top: clamp(192px, 14.8vw, 248px) !important;
  }

  .home-page .hero-price-badge {
    left: clamp(24px, 2.7vw, 46px) !important;
    top: clamp(72px, 6.3vw, 110px) !important;
    min-width: clamp(300px, 27vw, 430px) !important;
    padding: clamp(10px, 1.05vw, 14px) clamp(18px, 1.8vw, 26px) !important;
    border-radius: 30px !important;
  }

  .home-page .hero-price-main {
    font-size: clamp(23px, 1.95vw, 33px) !important;
    font-weight: 500 !important;
  }

  .home-page .hero-price-sub {
    font-size: clamp(17px, 1.38vw, 25px) !important;
  }

  .home-page .hero-price-mobile-line {
    display: none !important;
  }
}

@media (max-width: 920px) {
  .home-page .hero-home {
    padding-top: 0 !important;
    padding-bottom: 20px !important;
  }

  .home-page .hero-home .container {
    width: 100% !important;
  }

  .home-page .hero-shell {
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .home-page .hero-shell::after,
  .home-page .hero-shell.glass::before {
    display: none !important;
  }

  .home-page .hero-bg {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: clamp(320px, 92vw, 430px) !important;
    object-position: 64% 44% !important;
    border-bottom: 0 !important;
  }

  .home-page .hero-price-badge {
    left: 50% !important;
    top: calc(clamp(320px, 92vw, 430px) - 68px) !important;
    transform: translateX(-50%) !important;
    width: min(94vw, 760px) !important;
    min-width: 0 !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    z-index: 5 !important;
    border: 3px solid rgba(255, 255, 255, 0.93) !important;
    background:
      radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 44%),
      linear-gradient(180deg, rgba(255, 253, 250, 0.88) 0%, rgba(246, 236, 220, 0.88) 100%) !important;
    box-shadow:
      0 10px 24px rgba(121, 88, 54, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  }

  .home-page .hero-price-badge::before {
    inset: 6px !important;
    border-width: 1.4px !important;
  }

  .home-page .hero-price-badge::after {
    opacity: 0.34 !important;
  }

  .home-page .hero-price-main,
  .home-page .hero-price-sub {
    display: none !important;
  }

  .home-page .hero-price-mobile-line {
    display: block !important;
    white-space: nowrap !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(16px, 4.2vw, 29px) !important;
    line-height: 1.04 !important;
    font-weight: 700 !important;
    color: #6a482b !important;
    letter-spacing: 0.01em !important;
    text-shadow: 0 1px 0 rgba(255, 244, 227, 0.62) !important;
  }

  .home-page .hero-content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 30px 24px 34px !important;
    align-items: flex-start !important;
    text-align: left !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(180deg, rgba(248, 246, 243, 0.88) 0%, rgba(248, 246, 243, 0.98) 26%, #f8f5f1 100%) !important;
    backdrop-filter: blur(5px) saturate(106%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  }

  .home-page .hero-content::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -96px;
    height: 104px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(248, 245, 241, 0) 0%, rgba(248, 245, 241, 0.92) 72%, #f8f5f1 100%);
    z-index: 0;
  }

  .home-page .hero-content > * {
    position: relative;
    z-index: 1;
  }

  .home-page .hero-content .hero-title {
    font-size: clamp(30px, 8vw, 58px) !important;
    line-height: 1.02 !important;
    color: #4f3728 !important;
  }

  .home-page .hero-content .hero-subtitle {
    margin-top: 10px !important;
    font-size: clamp(17px, 4.3vw, 30px) !important;
    line-height: 1.12 !important;
    color: #5b4332 !important;
  }

  .home-page .hero-content .hero-title-line,
  .home-page .hero-content .hero-subline {
    white-space: normal !important;
  }
}

#partnerModal .partner-how.partner-how-visual {
  padding: 16px 16px 14px !important;
}

#partnerModal .partner-how-visual h3 {
  margin: 0 auto !important;
  width: fit-content !important;
  max-width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 9px 24px !important;
  border-radius: 999px !important;
  border: 4px solid rgba(255, 255, 255, 0.95) !important;
  background: linear-gradient(180deg, rgba(240, 205, 153, 0.98) 0%, rgba(206, 159, 95, 0.95) 100%) !important;
  box-shadow: 0 8px 18px rgba(118, 82, 44, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.005em !important;
  color: #5a3b22 !important;
  text-align: center !important;
}

#partnerModal .partner-benefit-card {
  padding: 16px 16px 14px !important;
  gap: 8px !important;
}

#partnerModal .partner-benefit-ribbon {
  font-size: clamp(24px, 1.95vw, 31px) !important;
  font-weight: 700 !important;
  line-height: 1.03 !important;
  color: #6b4929 !important;
}

#partnerModal .partner-benefit-amount {
  margin-top: 2px !important;
  font-size: clamp(54px, 4.35vw, 68px) !important;
  line-height: 0.95 !important;
}

#partnerModal .partner-benefit-title {
  font-size: clamp(31px, 2.5vw, 38px) !important;
  line-height: 0.98 !important;
  white-space: nowrap !important;
}

#partnerModal .partner-benefit-title-wide {
  font-size: clamp(18px, 1.4vw, 24px) !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

#partnerModal .partner-benefit-text {
  font-size: clamp(17px, 1.35vw, 22px) !important;
  line-height: 1.08 !important;
}

#partnerModal .partner-benefit-card-client .partner-benefit-text {
  white-space: nowrap !important;
}

#partnerModal .partner-benefit-note {
  font-size: clamp(14px, 1.05vw, 17px) !important;
  line-height: 1.16 !important;
}

#partnerModal .partner-benefit-card-client .partner-benefit-note {
  white-space: nowrap !important;
}

#partnerModal .partner-left-check {
  display: none !important;
}

@media (max-width: 640px) {
  #partnerModal .partner-how-visual h3 {
    font-size: clamp(14px, 4.2vw, 18px) !important;
    padding: 8px 14px !important;
    border-width: 3px !important;
  }

  #partnerModal .partner-benefit-ribbon {
    font-size: clamp(32px, 8vw, 40px) !important;
  }

  #partnerModal .partner-benefit-amount {
    font-size: clamp(58px, 12vw, 74px) !important;
  }

  #partnerModal .partner-benefit-title {
    font-size: clamp(30px, 7vw, 40px) !important;
  }

  #partnerModal .partner-benefit-title-wide {
    font-size: clamp(20px, 5vw, 24px) !important;
  }

  #partnerModal .partner-benefit-text {
    font-size: clamp(18px, 4.5vw, 22px) !important;
    line-height: 1.08 !important;
  }

  #partnerModal .partner-benefit-note {
    font-size: clamp(14px, 3.3vw, 16px) !important;
    line-height: 1.15 !important;
  }
}

#certificateModal .certificate-modal-layout {
  grid-template-columns: minmax(0, 42%) minmax(0, 58%) !important;
  gap: 16px !important;
}

#certificateModal .certificate-modal-visual {
  align-items: center !important;
}

#certificateModal .certificate-modal-visual img {
  width: min(100%, 360px) !important;
  max-height: min(76vh, 560px) !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 18px !important;
  border: 2px solid rgba(255, 247, 236, 0.94) !important;
  box-shadow: 0 12px 24px rgba(82, 60, 37, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  background: rgba(255, 255, 255, 0.45) !important;
}

@media (max-width: 820px) {
  #certificateModal .certificate-modal-layout {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #certificateModal .certificate-modal-visual img {
    width: min(100%, 320px) !important;
    max-height: min(42vh, 340px) !important;
  }
}

/* Precision polish: hero badge + partner modal readability */
@media (max-width: 920px) {
  .home-page .hero-price-badge {
    padding: 11px 18px !important;
    border: 4px solid rgba(255, 255, 255, 0.97) !important;
    isolation: isolate !important;
    background:
      radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0) 46%),
      linear-gradient(180deg, rgba(255, 254, 251, 0.94) 0%, rgba(248, 238, 224, 0.9) 100%) !important;
    box-shadow:
      0 12px 26px rgba(120, 85, 48, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      inset 0 -1px 8px rgba(217, 184, 139, 0.3) !important;
  }

  .home-page .hero-price-badge::before {
    inset: 5px !important;
    z-index: 0 !important;
    border-radius: 999px !important;
    border: 2.3px solid transparent !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.5) 100%) padding-box,
      linear-gradient(112deg, rgba(250, 231, 195, 0.92) 0%, rgba(222, 178, 112, 0.98) 38%, rgba(255, 247, 228, 0.9) 68%, rgba(214, 165, 94, 0.97) 100%) border-box !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74) !important;
  }

  .home-page .hero-price-badge::after {
    z-index: 0 !important;
    opacity: 0.1 !important;
  }

  .home-page .hero-price-main,
  .home-page .hero-price-sub,
  .home-page .hero-price-mobile-line {
    position: relative !important;
    z-index: 2 !important;
  }

  .home-page .hero-price-mobile-line {
    font-size: clamp(17px, 4.4vw, 30px) !important;
    line-height: 1.03 !important;
    font-weight: 800 !important;
    color: #5f3f26 !important;
    text-shadow: 0 1px 0 rgba(255, 245, 230, 0.7) !important;
  }
}

#partnerModal .partner-modal-dialog {
  width: min(94vw, 860px) !important;
  border-radius: 22px !important;
  padding: 18px !important;
}

#partnerModal .partner-form {
  gap: 14px !important;
}

#partnerModal .partner-how.partner-how-visual {
  padding: 17px 17px 15px !important;
  border-radius: 18px !important;
}

#partnerModal .partner-how-visual h3 {
  margin-bottom: 14px !important;
  padding: 9px 26px !important;
  border-width: 5px !important;
  white-space: nowrap !important;
  background: linear-gradient(180deg, rgba(245, 214, 166, 0.98) 0%, rgba(206, 160, 96, 0.95) 100%) !important;
  font-size: clamp(22px, 1.72vw, 29px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.003em !important;
}

#partnerModal .partner-benefits {
  margin-top: 0 !important;
  gap: 14px !important;
}

#partnerModal .partner-benefit-card {
  padding: 16px 16px 14px !important;
  gap: 7px !important;
  overflow: visible !important;
}

#partnerModal .partner-benefit-ribbon {
  font-size: clamp(24px, 1.95vw, 31px) !important;
  line-height: 1.03 !important;
}

#partnerModal .partner-benefit-amount {
  margin-top: 2px !important;
  font-size: clamp(54px, 4.2vw, 66px) !important;
  line-height: 0.95 !important;
}

#partnerModal .partner-benefit-title {
  font-size: clamp(31px, 2.55vw, 40px) !important;
  line-height: 0.98 !important;
  white-space: nowrap !important;
}

#partnerModal .partner-benefit-title-wide {
  font-size: clamp(18px, 1.35vw, 22px) !important;
  line-height: 1.07 !important;
  white-space: nowrap !important;
}

#partnerModal .partner-benefit-text {
  font-size: clamp(17px, 1.25vw, 20px) !important;
  line-height: 1.09 !important;
  white-space: nowrap !important;
}

#partnerModal .partner-benefit-note {
  padding-top: 2px !important;
  margin-top: auto !important;
  font-size: clamp(14px, 1.02vw, 16px) !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  text-wrap: balance !important;
}

#partnerModal .partner-benefit-card-client .partner-benefit-note {
  white-space: normal !important;
}

#partnerModal .partner-shell {
  border-radius: 18px !important;
}

#partnerModal .partner-apply-title {
  font-size: clamp(22px, 1.7vw, 30px) !important;
  line-height: 1.05 !important;
}

#partnerModal .partner-field label,
#partnerModal .partner-field legend {
  font-size: 15px !important;
}

#partnerModal .partner-apply input[type="text"],
#partnerModal .partner-apply input[type="email"],
#partnerModal .partner-apply input[type="tel"] {
  height: 44px !important;
  min-height: 44px !important;
}

#partnerModal #partnerSubmit.partner-submit,
#partnerModal .partner-actions .btn-ghost {
  height: 46px !important;
  min-height: 46px !important;
}

@media (max-width: 640px) {
  #partnerModal .partner-modal-dialog {
    width: min(94vw, 520px) !important;
    border-radius: 20px !important;
    padding: 14px !important;
  }

  #partnerModal .partner-how.partner-how-visual {
    padding: 12px !important;
  }

  #partnerModal .partner-how-visual h3 {
    padding: 8px 16px !important;
    border-width: 4px !important;
    font-size: clamp(14px, 4vw, 18px) !important;
    white-space: normal !important;
    text-wrap: balance !important;
  }

  #partnerModal .partner-benefits {
    gap: 12px !important;
  }

  #partnerModal .partner-benefit-card {
    padding: 14px 12px 12px !important;
    gap: 6px !important;
  }

  #partnerModal .partner-benefit-ribbon {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  #partnerModal .partner-benefit-amount {
    font-size: clamp(50px, 12.5vw, 64px) !important;
  }

  #partnerModal .partner-benefit-title {
    font-size: clamp(31px, 8vw, 42px) !important;
  }

  #partnerModal .partner-benefit-title-wide {
    font-size: clamp(16px, 4.3vw, 20px) !important;
  }

  #partnerModal .partner-benefit-text {
    font-size: clamp(15px, 4vw, 18px) !important;
  }

  #partnerModal .partner-benefit-note {
    font-size: clamp(13px, 3.4vw, 15px) !important;
  }

  #partnerModal .partner-apply-title {
    font-size: clamp(18px, 5.8vw, 24px) !important;
  }

  #partnerModal .partner-field label,
  #partnerModal .partner-field legend,
  #partnerModal .partner-choice-item,
  #partnerModal .partner-apply input[type="text"],
  #partnerModal .partner-apply input[type="email"],
  #partnerModal .partner-apply input[type="tel"] {
    font-size: 13px !important;
  }
}

/* Final alignment fixes requested: top center + vertical button centering */
@media (max-width: 920px) {
  .page .nav {
    justify-content: center !important;
  }

  .page .brand {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .home-page .hero-price-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .home-page .hero-price-mobile-line {
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 700px) {
  .mobile-bottom-nav {
    align-items: stretch !important;
  }

  .mobile-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .mobile-nav-label {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Certificate modal content + mobile image fit */
#certificateModal .certificate-modal-head h2 {
  margin-bottom: 10px !important;
}

#certificateModal .certificate-steps {
  margin: 0 0 12px;
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
  font-size: 14px;
  line-height: 1.38;
  color: rgba(80, 71, 65, 0.95);
}

#certificateModal .certificate-steps li {
  margin: 0;
}

@media (max-width: 820px) {
  #certificateModal .certificate-modal-visual {
    width: 100% !important;
  }

  #certificateModal .certificate-modal-visual img {
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    aspect-ratio: 23 / 10 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center 10% !important;
  }

  #certificateModal .certificate-steps {
    font-size: 13px;
    gap: 5px;
    margin-bottom: 10px;
  }
}

/* Partner modal header refinement: centered and premium emphasis */
#partnerModal .partner-modal-dialog {
  margin-left: auto !important;
  margin-right: auto !important;
}

#partnerModal .partner-how.partner-how-visual {
  max-width: min(100%, 760px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  justify-items: center !important;
  text-align: center !important;
}

#partnerModal .partner-how-kicker {
  margin: 0 0 10px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(24px, 2.15vw, 34px) !important;
  font-weight: 700 !important;
  line-height: 1.04 !important;
  letter-spacing: 0.002em !important;
  color: #6b4528 !important;
  text-shadow: 0 1px 0 rgba(255, 247, 231, 0.78) !important;
}

#partnerModal .partner-how-visual h3 {
  margin: 0 auto 12px !important;
  font-size: clamp(20px, 1.45vw, 26px) !important;
  line-height: 1.08 !important;
}

#partnerModal .partner-benefits {
  width: 100% !important;
  max-width: 730px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 640px) {
  #partnerModal .partner-how.partner-how-visual {
    padding: 12px !important;
  }

  #partnerModal .partner-how-kicker {
    margin-bottom: 8px !important;
    font-size: clamp(18px, 5.8vw, 24px) !important;
    line-height: 1.08 !important;
  }

  #partnerModal .partner-how-visual h3 {
    margin-bottom: 10px !important;
    padding: 8px 16px !important;
    font-size: clamp(15px, 4.5vw, 19px) !important;
    white-space: nowrap !important;
  }
}

/* Mobile-only: center specific requested lines */
@media (max-width: 920px) {
  .home-page .hero-content .hero-title,
  .home-page .hero-content .hero-subtitle,
  .home-page #examples .premium-card-how > h2,
  .home-page #examples .premium-card-summary > h2 {
    text-align: center !important;
  }

  .home-page .hero-content .hero-title-line,
  .home-page .hero-content .hero-subline {
    text-align: center !important;
  }

  .home-page #examples .card-reviews-inline .title-row {
    display: grid !important;
    justify-items: center !important;
    gap: 4px !important;
  }

  .home-page #examples .card-reviews-inline .title-row > h2 {
    text-align: center !important;
  }

  .home-page #examples .premium-card-summary > h2 {
    white-space: nowrap !important;
  }

  .home-page #examples .premium-card-summary > h2 br {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .order-page .form-actions .actions-group {
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Home desktop polish: card heights + CTA buttons */
@media (min-width: 1181px) {
  .home-page #examples .premium-grid > .premium-card-how,
  .home-page #examples .premium-grid > .premium-card-summary {
    align-self: start;
    height: auto;
  }
}

.home-contact-cta .contact-trigger,
.home-contact-cta .partner-trigger {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.home-contact-cta .contact-trigger .home-contact-cta__text,
.home-contact-cta .contact-trigger .home-contact-cta__icon {
  color: rgba(109, 79, 50, 0.98) !important;
  text-shadow: none !important;
}

.home-contact-cta .home-contact-cta__icon {
  display: none;
}

@media (min-width: 901px) {
  .home-contact-cta .contact-trigger,
  .home-contact-cta .partner-trigger {
    gap: 9px;
  }

  .home-contact-cta .home-contact-cta__icon {
    display: inline-flex;
  }

  .home-contact-cta .contact-trigger .home-contact-cta__icon {
    color: rgba(109, 79, 50, 0.96);
    border: 1px solid rgba(194, 156, 108, 0.58);
    background: linear-gradient(180deg, rgba(252, 243, 229, 0.96) 0%, rgba(238, 219, 193, 0.92) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  }

  .home-contact-cta .partner-trigger {
    border: 1px solid rgba(177, 133, 83, 0.84) !important;
    border-radius: 10px !important;
    background: linear-gradient(180deg, rgba(228, 192, 144, 0.98) 0%, rgba(192, 151, 98, 0.96) 100%) !important;
    color: #fff6e8 !important;
    text-shadow: 0 1px 0 rgba(116, 80, 44, 0.58) !important;
  }

  .home-contact-cta .partner-trigger .home-contact-cta__icon {
    color: #fff7ec;
    border: 1px solid rgba(255, 239, 215, 0.58);
    background: linear-gradient(180deg, rgba(246, 220, 184, 0.32) 0%, rgba(202, 157, 101, 0.28) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 247, 234, 0.54);
  }
}

.home-contact-cta .home-contact-cta__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.home-contact-cta .home-contact-cta__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 920px) {
  .home-page .hero-content .hero-title,
  .home-page .hero-content .hero-subtitle {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .home-page .hero-content .hero-title-line,
  .home-page .hero-content .hero-subline {
    width: 100% !important;
    text-align: center !important;
  }

  .home-page #examples .card-reviews-inline .title-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    gap: 10px !important;
  }

  .home-page #examples .card-reviews-inline .rating {
    margin-left: auto !important;
    text-align: right !important;
  }
}

@media (max-width: 700px) {
  #partnerModal .partner-modal-dialog {
    padding: 11px !important;
  }

  #partnerModal .partner-form {
    gap: 9px !important;
  }

  #partnerModal .partner-how.partner-how-visual {
    padding: 9px 10px 10px !important;
  }

  #partnerModal .partner-how-kicker {
    margin-bottom: 6px !important;
    font-size: clamp(15px, 4.4vw, 20px) !important;
    line-height: 1.06 !important;
  }

  #partnerModal .partner-how-visual h3 {
    margin-bottom: 8px !important;
    padding: 6px 12px !important;
    border-width: 3px !important;
    font-size: clamp(13px, 3.7vw, 16px) !important;
    line-height: 1.08 !important;
  }

  #partnerModal .partner-benefits {
    gap: 8px !important;
  }

  #partnerModal .partner-benefit-card {
    padding: 9px 9px 8px !important;
    gap: 4px !important;
  }

  #partnerModal .partner-benefit-ribbon {
    font-size: clamp(24px, 6.3vw, 30px) !important;
    line-height: 1.02 !important;
  }

  #partnerModal .partner-benefit-amount {
    font-size: clamp(40px, 10vw, 50px) !important;
    line-height: 0.95 !important;
  }

  #partnerModal .partner-benefit-title {
    font-size: clamp(23px, 6.1vw, 30px) !important;
    line-height: 0.98 !important;
  }

  #partnerModal .partner-benefit-title-wide {
    font-size: clamp(14px, 3.7vw, 17px) !important;
    line-height: 1.05 !important;
  }

  #partnerModal .partner-benefit-text {
    font-size: clamp(13px, 3.5vw, 16px) !important;
    line-height: 1.08 !important;
  }

  #partnerModal .partner-benefit-note {
    font-size: clamp(12px, 3.1vw, 14px) !important;
    line-height: 1.14 !important;
    padding-top: 2px !important;
  }

  #partnerModal .partner-apply-title {
    font-size: clamp(16px, 4.5vw, 20px) !important;
    padding: 8px 10px !important;
  }

  #partnerModal .partner-left,
  #partnerModal .partner-right {
    padding: 9px !important;
  }

  #partnerModal .partner-apply {
    gap: 6px !important;
  }

  #partnerModal .partner-field label,
  #partnerModal .partner-field legend,
  #partnerModal .partner-choice-item,
  #partnerModal .partner-apply input[type="text"],
  #partnerModal .partner-apply input[type="email"],
  #partnerModal .partner-apply input[type="tel"] {
    font-size: 12.5px !important;
  }

  #partnerModal .partner-apply input[type="text"],
  #partnerModal .partner-apply input[type="email"],
  #partnerModal .partner-apply input[type="tel"] {
    height: 36px !important;
    min-height: 36px !important;
  }

  #partnerModal .partner-right {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-areas: "close submit" !important;
    gap: 8px !important;
    align-items: center !important;
    align-content: center !important;
  }

  #partnerModal .partner-actions {
    grid-area: close !important;
    width: 100% !important;
    margin: 0 !important;
  }

  #partnerModal #partnerSubmit.partner-submit {
    grid-area: submit !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    font-size: 13px !important;
  }

  #partnerModal .partner-actions .btn-ghost {
    width: 100% !important;
    max-width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 700px) {
  #certificateModal .certificate-modal-dialog {
    padding: 11px !important;
  }

  #certificateModal .certificate-modal-layout {
    gap: 8px !important;
  }

  #certificateModal .certificate-modal-visual {
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  #certificateModal .certificate-modal-visual img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 23 / 10 !important;
    object-fit: cover !important;
    object-position: center 10% !important;
  }

  #certificateModal .certificate-modal-main {
    padding: 12px !important;
  }
}

/* Prevent mobile browser focus zoom in modal forms */
@media (max-width: 920px) {
  #contactModal .contact-form input[type="text"],
  #contactModal .contact-form input[type="email"],
  #contactModal .contact-form input[type="tel"],
  #contactModal .contact-form textarea,
  #partnerModal .partner-apply input[type="text"],
  #partnerModal .partner-apply input[type="email"],
  #partnerModal .partner-apply input[type="tel"],
  #certificateModal .certificate-field input[type="text"],
  #certificateModal .certificate-field input[type="email"],
  #certificateModal .certificate-field input[type="tel"] {
    font-size: 16px !important;
  }
}

/* Mobile stability: prevent horizontal page/modal shift */
@media (max-width: 920px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body {
    position: relative;
    overscroll-behavior-x: none;
  }

  .page,
  .page main,
  .topbar,
  .footer {
    max-width: 100%;
    overflow-x: clip;
  }

  #homeVideoModal,
  #contactModal,
  #partnerModal,
  #certificateModal,
  #orderSuccessModal,
  .like-order-modal {
    overflow-x: hidden !important;
  }

  #homeVideoModal .video-modal-dialog,
  #contactModal .contact-modal-dialog,
  #partnerModal .partner-modal-dialog,
  #certificateModal .certificate-modal-dialog,
  #orderSuccessModal .order-success-dialog,
  .like-order-modal .like-order-dialog {
    width: min(100%, calc(100vw - 16px)) !important;
    max-width: calc(100vw - 16px) !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
  }

  #contactModal[aria-hidden="false"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
  }

  #contactModal .contact-modal-dialog {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    max-height: calc(100dvh - 16px) !important;
  }

  #partnerModal .partner-modal-dialog {
    transform: none !important;
    max-height: calc(100dvh - 16px) !important;
  }

  #partnerModal .partner-modal-head p,
  #partnerModal .partner-benefit-card-client .partner-benefit-text,
  #partnerModal .partner-benefit-card-client .partner-benefit-note {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  #partnerModal .partner-shell {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "left"
      "right" !important;
  }

  #partnerModal .partner-right {
    border-left: 0 !important;
    border-top: 1px solid rgba(162, 131, 99, 0.24) !important;
  }
}
