@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/nunito-sans-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/nunito-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/playfair-display-cyrillic-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/playfair-display-latin-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --ink: #1E1E20;
  --ink-2: #2B2B2E;
  --cream: #FFFEFC;
  --blush: #F8E7E9;
  --white: #FFFFFF;
  --accent: #C41A2E;
  --lime: #C41A2E;
  --muted: rgba(30,30,32,0.60);
  --line: rgba(30,30,32,0.08);
  --line-strong: rgba(30,30,32,0.14);
  --shadow: 0 20px 42px -16px rgba(30,30,32,0.11);
  --shadow-hover: 0 32px 64px -20px rgba(30,30,32,0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: .4;
  }
}
body > * { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, .font-heading { font-family: "Manrope", sans-serif; }
h1, h2, h3, p { margin-top: 0; }
strong { font-weight: 800; }
.accent-italic { font-family: "Playfair Display", serif; font-style: italic; font-weight: 400; }
.container { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
section { padding: 80px 0; scroll-margin-top: 96px; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 10px 0 0;
  pointer-events: none;
}
.nav-inner {
  width: min(1040px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 10px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(30,30,32,.94);
  box-shadow: 0 22px 55px -28px rgba(30,30,32,.58);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}
.nav-logo {
  position: relative;
  display: block;
  width: 92px;
  height: 48px;
  flex: 0 0 auto;
  text-decoration: none;
  background: url("/images/logos/yeswebcam-logo01.svg") left center / contain no-repeat;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 850;
  color: rgba(255,255,255,.70);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.nav-link:focus-visible,
.nav-btn:focus-visible {
  outline: 2px solid var(--blush);
  outline-offset: 3px;
}
.nav-btn, .btn-cta, .btn-cta-pink, .form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, filter .15s ease;
}
.nav-btn { min-height: 44px; margin-left: 8px; background: var(--accent); color: #fff; font-size: 12.5px; padding: 9px 20px; border-radius: 100px; box-shadow: 0 14px 32px -20px rgba(196,26,46,.85); }
.nav-btn:hover, .btn-cta:hover { background: #A91525; color: #fff; transform: translateY(-1px); }
.burger, .close-menu, .mobile-menu { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.hero-section {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 116px 0 72px;
  text-align: left;
  background: linear-gradient(180deg, #fffefc 0%, #fbf5f2 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy { min-width: 0; max-width: 650px; }
.hero-visual { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.hero-photo {
  min-height: 250px;
  background: #e9dfd8 url("/photos/optimized/studio-room-3-1280.webp") center 48% / cover no-repeat;
}
.hero-title {
  font-weight: 900;
  font-size: clamp(2.25rem, 4.2vw, 3.55rem);
  line-height: .98;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-pay { white-space: nowrap; }
.hero-line { display: block; }
.hero-sub { font-family: "Manrope", sans-serif; font-weight: 800; font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(30,30,32,.76); max-width: 590px; margin: 0 0 12px; line-height: 1.42; }
.hero-desc { max-width: 570px; margin: 0 0 28px; color: rgba(30,30,32,.58); font-size: 15.5px; line-height: 1.65; }
.hero-actions { display: flex; justify-content: flex-start; gap: 12px; flex-wrap: wrap; }
.hero-panel {
  position: relative;
  padding: 24px;
  border: 0;
  border-top: 1px solid rgba(30,30,32,.08);
  border-radius: 0;
  align-self: center;
  overflow: hidden;
}
.hero-panel::before {
  content: "YES";
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(196,26,46,.055);
  font-family: "Manrope", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.hero-panel-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.hero-panel-row:first-child { padding-top: 0; }
.hero-panel-row span {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.hero-panel-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  text-align: right;
}
.hero-panel-pay {
  display: grid;
  justify-items: end;
  gap: 3px;
}
.hero-panel-pay small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.shiny-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.shiny-text {
  background: linear-gradient(90deg, var(--ink) 35%, #fff 50%, var(--ink) 65%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shinyText 6s linear infinite;
}
@keyframes shinyText { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.btn-cta { background: var(--ink); color: #fff; padding: 16px 34px; border-radius: 16px; font-size: clamp(1rem, 2vw, 1.08rem); }
.btn-cta-pink { background: var(--accent); color: #fff; padding: 16px 34px; border-radius: 16px; font-size: clamp(1rem, 2vw, 1.08rem); }
.btn-cta-pink:hover { filter: brightness(1.08); transform: scale(1.04); }
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.42) 50%, transparent 100%); transform: translateX(-100%); animation: shimmerSlide 3s ease-in-out infinite; }
@keyframes shimmerSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.section-pre { display: block; width: fit-content; margin: 0 auto 12px; font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .15em; background: var(--blush); color: var(--accent); padding: 5px 14px; border-radius: 100px; text-align: center; }
.section-title { font-weight: 900; font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.08; color: var(--ink); margin-bottom: 32px; text-align: center; letter-spacing: 0; }
.card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card-lime { border: 2.5px solid var(--accent); }
.section-dark {
  background: var(--white);
  color: var(--muted);
  border-top: 1px solid rgba(196,26,46,.08);
  border-bottom: 1px solid rgba(196,26,46,.08);
}
.section-dark .section-pre { background: var(--blush); color: var(--accent); }
.section-dark .section-title { color: var(--ink); }
.section-dark .accent-italic { -webkit-text-fill-color: var(--accent); }
.section-dark .card {
  background: var(--white);
  border: 1px solid rgba(30,30,32,.07);
  box-shadow: var(--shadow);
}
.section-dark .card:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.section-dark strong, .section-dark h3, .section-dark summary { color: var(--ink); }
.section-dark a { color: var(--ink); }

.video-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 24px;
  box-shadow: 0 28px 70px -24px rgba(30,30,32,.24);
}
.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
}
.video-card:not(.playing)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,30,32,.04), rgba(30,30,32,.30));
  pointer-events: none;
}
.video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 36px rgba(30,30,32,.30);
  transition: transform .28s var(--ease), background .28s var(--ease), opacity .28s var(--ease);
}
.video-play-btn::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  background: rgba(196,26,46,.18);
  animation: videoPulse 2.2s ease-in-out infinite;
}
.video-play-btn span {
  position: absolute;
  left: 32px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid currentColor;
}
.video-play-btn:hover {
  background: var(--ink-2);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-card.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.82);
}
@keyframes videoPulse {
  0%, 100% { transform: scale(1); opacity: .95; }
  50% { transform: scale(1.18); opacity: .42; }
}
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.pillar-card { padding: 26px 24px; display: grid; gap: 14px; align-content: start; min-height: 232px; }
.pillar-icon { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; color: var(--accent); font-family: "Manrope", sans-serif; font-weight: 900; }
.pillar-icon::before {
  content: "✦";
  font-size: 30px;
  line-height: 1;
  color: currentColor;
  filter: drop-shadow(0 0 14px rgba(196,26,46,.18));
}
.pillar-text strong { display: block; margin-bottom: 8px; font-size: 17px; line-height: 1.25; }
.pillar-text span { display: block; font-size: 15.5px; line-height: 1.62; color: var(--muted); }
.section-note { text-align: center; max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 16.5px; line-height: 1.7; }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.role-card {
  position: relative;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.role-card::after {
  content: "✦";
  position: absolute;
  right: 22px;
  top: 18px;
  color: var(--lime);
  font-size: 22px;
  line-height: 1;
}
.role-card h3 {
  max-width: calc(100% - 34px);
  font-weight: 900;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  line-height: 1.18;
  margin-bottom: 10px;
}
.role-pay {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  line-height: 1.02;
  font-weight: 900;
  color: var(--ink);
  margin: 8px 0 18px;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.role-pay span { display: inline-block; white-space: nowrap; }
.role-pay--fact {
  display: inline-grid;
  justify-items: start;
  gap: 4px;
}
.role-pay--fact small {
  display: block;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.role-list {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.role-list li {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}
.role-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
}
.role-card .btn-cta { margin-top: auto; width: 100%; }
.gallery-strip { background: #fff; }
.gallery-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
  margin-bottom: 0;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.photo-grid img:first-child { grid-column: 1 / 2; grid-row: 1 / 2; }
.photo-grid img:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.photo-grid img:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 3; }
.photo-grid img:nth-child(4) { grid-column: 1 / 2; grid-row: 2 / 3; }
.photo-grid img:nth-child(5) { grid-column: 2 / 3; grid-row: 2 / 3; }
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  margin-top: 30px;
  color: var(--ink);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-align: left;
}
.trust-icon {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.trust-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  color: rgba(30,30,32,.76);
  white-space: nowrap;
}
.trust-label { font-size: 13px; color: var(--muted); font-weight: 700; }
.content-card {
  position: relative;
  padding: 42px 40px 36px;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}
.content-card::before {
  content: "YES";
  position: absolute;
  right: 28px;
  top: 22px;
  color: rgba(196,26,46,.055);
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.content-card__head,
.content-card__grid,
.pills {
  position: relative;
  z-index: 1;
}
.content-card .section-title {
  max-width: 660px;
  margin: 0 auto 28px;
}
.content-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  justify-items: center;
}
.content-card__main {
  display: grid;
  gap: 18px;
  justify-items: center;
}
.content-card p {
  max-width: 58ch;
  margin: 0;
  color: rgba(30,30,32,.72);
  font-size: 16px;
  line-height: 1.68;
}
.content-quote {
  position: relative;
  width: min(100%, 720px);
  min-height: 0;
  padding: 16px 22px 16px 48px;
  border: 1px solid rgba(196,26,46,.18);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: var(--blush);
  color: var(--ink);
}
.content-quote::before {
  content: "✦";
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--accent);
  font-size: 18px;
}
.content-quote em {
  display: block;
  color: rgba(30,30,32,.82);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}
.pills { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 28px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(30,30,32,.06);
  border-radius: 100px;
  padding: 8px 14px;
  color: rgba(30,30,32,.82);
  font-size: 13px;
  font-weight: 800;
}
.pill::before {
  content: "✦";
  color: var(--ink);
  font-size: 12px;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
details {
  border: 1px solid rgba(30,30,32,.08);
  border-radius: 18px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 16px 34px -24px rgba(30,30,32,.18);
  overflow: hidden;
  transition: background .24s var(--ease), border-color .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
}
details:hover {
  background: #fff;
  border-color: rgba(196,26,46,.18);
  box-shadow: 0 20px 42px -24px rgba(30,30,32,.20);
}
details[open] {
  background: #fff;
  border-color: rgba(196,26,46,.34);
}
summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 20px 58px 20px 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 850;
  font-size: 16px;
  line-height: 1.35;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform .24s var(--ease), border-color .24s var(--ease);
}
details[open] summary::after {
  border-color: var(--accent);
  transform: translateY(-35%) rotate(225deg);
}
.faq-answer {
  animation: faqReveal .3s var(--ease);
}
.faq-answer-inner {
  padding: 0 24px 22px;
}
details p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  font-size: 16px;
  line-height: 1.65;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.apply-card { display: grid; grid-template-columns: .95fr 1.05fr; gap: 32px; align-items: start; background: var(--ink); color: #fff; border-radius: 24px; padding: 40px 32px; max-width: 960px; margin: 0 auto; }
.apply-copy { display: grid; gap: 16px; align-content: start; }
.apply-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(196,26,46,.24);
  border-radius: 999px;
  color: var(--blush);
  background: rgba(248,231,233,.10);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.apply-badge span,
.yes-star {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
}
.apply-badge span::before,
.yes-star::before {
  content: "✦";
  color: var(--accent);
  font-size: 17px;
  line-height: 1;
}
.apply-card .section-pre { margin-left: 0; margin-right: 0; background: rgba(248,231,233,.12); color: var(--blush); }
.apply-card .section-title { text-align: left; color: #fff; }
.apply-card p { color: rgba(255,255,255,.68); margin: 0; }
.apply-subtitle { color: #fff !important; font-weight: 900; font-size: 18px; }
.apply-trust { display: grid; gap: 10px; margin: 2px 0; }
.apply-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 800;
}
.apply-trust .yes-star::before { color: var(--blush); }
.apply-steps { display: grid; gap: 0; margin: 2px 0; padding: 0; list-style: none; counter-reset: apply-step; }
.apply-steps li {
  counter-increment: apply-step;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.apply-steps li::before { content: "0" counter(apply-step); grid-row: 1 / span 2; color: var(--blush); font-size: 11px; font-weight: 900; }
.apply-steps strong { font-size: 14px; }
.apply-steps span { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.45; }
.apply-contact-channels a { color: #fff; font-weight: 800; }
.apply-referral-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(196,26,46,.34);
  border-radius: 18px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 20px 46px -28px rgba(196,26,46,.65);
}
.apply-referral-highlight .yes-star::before { color: #fff; font-size: 20px; }
.apply-referral-highlight strong { font-size: 18px; line-height: 1.32; }
.final-form { display: grid; gap: 16px; text-align: left; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 22px; background: rgba(255,255,255,.06); }
.form-group { display: grid; gap: 6px; }
.form-group label { color: rgba(255,255,255,.65); font-size: 13px; font-weight: 700; }
.form-input { width: 100%; min-height: 52px; border: 2px solid rgba(255,255,255,.15); border-radius: 14px; padding: 13px 16px; font: inherit; color: #fff; background: rgba(255,255,255,.08); outline: none; }
.form-input:focus { border-color: var(--lime); background: rgba(255,255,255,.12); }
.form-input::placeholder { color: rgba(255,255,255,.36); }
.mobile-apply-bar { display: none; }
.form-choice-group { gap: 10px; }
.form-choice-label { color: rgba(255,255,255,.66); font-size: 13px; font-weight: 800; }
.form-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.form-choice-grid--role {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.form-choice {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.form-choice:hover { transform: translateY(-1px); border-color: rgba(196,26,46,.48); color: #fff; }
.form-choice.is-selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.form-choice input { position: absolute; opacity: 0; pointer-events: none; }
.form-help { margin: 2px 0 0; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.45; }
.form-submit { min-height: 54px; width: 100%; border-radius: 16px; background: var(--accent); color: #fff; font-size: 15px; padding: 13px 16px; }
.status { min-height: 22px; color: var(--lime); font-size: 14px; }
footer { background: var(--ink); color: rgba(255,255,255,.68); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
footer h4 { margin: 0 0 12px; color: #fff; font-size: 13px; letter-spacing: .08em; }
footer p { margin-bottom: 0; }
.footer-nav, .footer-contacts { display: grid; align-content: start; gap: 8px; }
.footer-nav a, .footer-contacts a { display: flex; align-items: center; min-height: 32px; color: rgba(255,255,255,.76); font-weight: 700; text-decoration: none; }
.footer-nav a:hover, .footer-contacts a:hover, .footer-nav a:focus-visible, .footer-contacts a:focus-visible { color: #fff; }
.footer-contacts .contact-phone { color: #fff; font-size: 18px; }
.footer-bottom { display: grid; gap: 16px; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.legal { margin: 0; text-align: left; }
.footer-bottom > p:last-child { margin: 0; color: rgba(255,255,255,.52); font-size: 12px; }

@media (max-width: 1100px) {
  .nav-inner {
    width: min(100% - 28px, 960px);
  }
  .nav-links {
    gap: 4px;
  }
  .nav-link {
    font-size: 12px;
    padding-inline: 9px;
  }
  .nav-btn {
    margin-left: 5px;
    padding-inline: 15px;
  }
}

@media (max-width: 980px) {
  .navbar {
    padding-top: 8px;
  }
  .nav-inner {
    width: min(100% - 28px, 720px);
    min-height: 64px;
    padding: 7px 10px 7px 17px;
  }
  .nav-logo {
    width: 82px;
    height: 48px;
  }
  .burger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    line-height: 1;
    cursor: pointer;
  }
  .nav-links {
    display: none !important;
  }
  .burger > span[aria-hidden] { width: 18px; height: 2px; margin: 2px 0; border-radius: 2px; background: currentColor; transition: transform .2s var(--ease), opacity .2s var(--ease); }
  body.menu-open .burger > span[aria-hidden]:nth-of-type(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .burger > span[aria-hidden]:nth-of-type(2) { opacity: 0; }
  body.menu-open .burger > span[aria-hidden]:nth-of-type(3) { transform: translateY(-6px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }
  .mobile-menu:not([hidden]) {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: block;
    padding: 12px;
    background: rgba(30,30,32,.48);
    overflow-y: auto;
  }
  .mobile-menu__panel {
    position: relative;
    display: grid;
    align-content: start;
    min-height: calc(100svh - 24px);
    padding: 84px 28px 28px;
    border-radius: 28px;
    background: var(--cream);
    box-shadow: var(--shadow-hover);
  }
  .mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  .mobile-menu__nav { display: grid; border-top: 1px solid var(--line); }
  .mobile-menu__nav a { display: flex; align-items: center; min-height: 58px; border-bottom: 1px solid var(--line); color: var(--ink); font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 800; text-decoration: none; }
  .mobile-menu__cta { width: 100%; min-height: 54px; margin-top: 28px; background: var(--ink); }
  .mobile-menu__contacts { display: grid; gap: 8px; margin-top: 28px; color: var(--muted); font-size: 14px; }
  .mobile-menu__contacts a { color: var(--ink); font-weight: 800; text-decoration: none; }
  .mobile-menu__contacts a:first-child { font-size: 19px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; scroll-margin-top: 132px; }
  .container { padding: 0 20px; }
  .navbar { padding-top: 8px; }
  .nav-inner {
    width: min(100% - 20px, 520px);
    min-height: 62px;
    padding: 7px 9px 7px 16px;
    gap: 12px;
  }
  .nav-logo {
    width: 76px;
    height: 46px;
  }
  .burger {
    width: 44px;
    height: 44px;
  }
  .hero-section { min-height: auto; padding: 96px 0 58px; text-align: center; }
  .hero-grid, .video-card, .pillars-grid, .role-grid, .gallery-board, .photo-grid, .apply-card, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 30px; }
  .footer-nav a, .footer-contacts a { min-height: 44px; }
  .footer-bottom { margin-top: 30px; }
  .hero-grid { gap: 26px; }
  .hero-copy { max-width: none; }
  .hero-title {
    font-size: clamp(2.15rem, 10vw, 3.05rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }
  .hero-desc { font-size: 14.5px; line-height: 1.6; margin-bottom: 24px; }
  .video-card {
    display: block;
    border-radius: 18px;
  }
  .video-play-btn {
    width: 62px;
    height: 62px;
  }
  .video-play-btn span {
    left: 26px;
    top: 20px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }
  .hero-actions { justify-content: center; }
  .hero-sub, .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-panel { text-align: left; padding: 20px; }
  .hero-photo { min-height: 220px; }
  .hero-panel-row { gap: 10px; }
  .hero-panel-row strong { font-size: 16px; }
  .pillar-card { min-height: auto; padding: 22px 20px; }
  .pillar-icon { width: 28px; height: 28px; }
  .pillar-icon::before { font-size: 26px; }
  .pillar-text strong { font-size: 16.5px; }
  .pillar-text span { font-size: 15px; }
  .section-note { font-size: 15px; }
  .photo-grid { grid-template-rows: none; }
  .photo-grid img,
  .photo-grid img:first-child,
  .photo-grid img:nth-child(2),
  .photo-grid img:nth-child(3),
  .photo-grid img:nth-child(4),
  .photo-grid img:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    height: 230px;
  }
  .trust-bar {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
  }
  .btn-cta, .btn-cta-pink { width: 100%; }
  .role-card { padding: 24px 20px; }
  .role-pay { font-size: clamp(1.75rem, 9vw, 2.35rem); }
  .content-card { padding: 30px 20px 26px; }
  .content-card::before { right: 14px; top: 18px; }
  .content-card .section-title { margin-bottom: 22px; }
  .content-card__grid { grid-template-columns: 1fr; gap: 20px; }
  .content-card p { max-width: none; font-size: 15px; }
  .content-quote {
    padding: 15px 18px 15px 44px;
  }
  .content-quote::before { left: 18px; top: 17px; }
  .content-quote em { font-size: 14.5px; }
  .pills { justify-content: flex-start; }
  .pill { width: 100%; justify-content: flex-start; }
  .faq-list { gap: 10px; }
  summary {
    padding: 17px 48px 17px 18px;
    font-size: 14px;
  }
  summary::after { right: 20px; }
  .faq-answer-inner { padding: 0 18px 18px; }
  details p { font-size: 14px; }
  .trust-item { text-align: center; }
  .apply-card { padding: 26px 18px; gap: 22px; border-radius: 20px; }
  .apply-referral-highlight { padding: 14px 15px; border-radius: 16px; }
  .apply-referral-highlight strong { font-size: 16px; }
  .final-form { padding: 16px; border-radius: 18px; }
  .form-choice-grid--role { grid-template-columns: 1fr; }
  .form-choice-grid:not(.form-choice-grid--role) { gap: 7px; }
  .form-choice { min-height: 42px; padding: 9px 8px; font-size: 12px; }
  .form-submit { font-size: 14px; }
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .mobile-apply-bar {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 74px;
    padding: 10px max(16px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right));
    border-top: 1px solid rgba(255,255,255,.12);
    background: var(--ink);
    color: #fff;
  }
  .mobile-apply-bar span { display: grid; gap: 1px; }
  .mobile-apply-bar strong { font-family: "Manrope", sans-serif; font-size: 15px; }
  .mobile-apply-bar small { color: rgba(255,255,255,.62); font-size: 10px; }
  .mobile-apply-bar .nav-btn { min-height: 48px; margin: 0; padding: 10px 15px; font-size: 12px; }
}

@media (max-width: 420px) {
  .nav-inner {
    width: calc(100% - 16px);
    min-height: 58px;
    padding: 6px 8px 6px 14px;
  }
  .nav-logo {
    width: 70px;
    height: 42px;
  }
  .burger {
    width: 40px;
    height: 40px;
  }
  .hero-section {
    padding-top: 90px;
  }
}


/* Shared studio video format: 16:9 preview + contained modal playback. */
.studio-video {
  width: 100%;
  max-width: 1180px;
  margin: 32px auto 48px;
}
.studio-video__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #111;
  box-shadow: 0 24px 70px rgba(30, 28, 26, .18);
  cursor: pointer;
}
.studio-video__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 28, 26, .02), rgba(30, 28, 26, .34));
}
.studio-video__preview > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}
.studio-video__preview:hover > img { transform: scale(1.025); }
.studio-video__preview:focus-visible { outline: 3px solid var(--accent, #8b1f31); outline-offset: 4px; }
.studio-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(245, 240, 235, .72);
  border-radius: 50%;
  background: rgba(139, 31, 49, .92);
  color: #f5f0eb;
  transform: translate(-50%, -50%);
}
.studio-video__play span {
  position: absolute;
  left: 29px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
}
body.video-modal-open { overflow: hidden; }
.studio-video-modal[hidden] { display: none; }
.studio-video-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  background: rgba(17, 15, 14, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.studio-video-modal__panel {
  position: relative;
  width: min(100%, 1180px);
  max-height: calc(100dvh - 24px);
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(245, 240, 235, .14);
  border-radius: 22px;
  background: #1a1817;
  box-shadow: 0 34px 120px rgba(0, 0, 0, .55);
}
.studio-video-modal__heading { padding-right: 64px; margin-bottom: 18px; }
.studio-video-modal__heading > span { color: #c67b87; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.studio-video-modal__heading h2 { margin: 8px 0 0; color: #f5f0eb; font-size: clamp(28px, 4vw, 48px); font-weight: 400; line-height: 1.05; }
.studio-video-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 240, 235, .2);
  border-radius: 50%;
  background: rgba(245, 240, 235, .06);
  color: #f5f0eb;
  font-family: inherit;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}
.studio-video-modal__close:hover,
.studio-video-modal__close:focus-visible { border-color: rgba(245, 240, 235, .52); background: rgba(245, 240, 235, .12); outline: none; }
.studio-video-modal video {
  width: 100%;
  max-height: calc(100dvh - 170px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  display: block;
  border-radius: 14px;
  background: #000;
  object-fit: contain;
}
@media (max-width: 640px) {
  .studio-video { margin: 24px auto 32px; }
  .studio-video__preview { border-radius: 16px; }
  .studio-video__play { width: 60px; height: 60px; }
  .studio-video__play span { left: 24px; top: 19px; border-top-width: 11px; border-bottom-width: 11px; border-left-width: 18px; }
  .studio-video-modal { padding: max(8px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom)); }
  .studio-video-modal__panel { padding: 16px; border-radius: 18px; }
  .studio-video-modal__heading { padding-right: 48px; margin-bottom: 14px; }
  .studio-video-modal__heading h2 { font-size: 27px; }
  .studio-video-modal__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .studio-video-modal video { max-height: calc(100dvh - 132px - env(safe-area-inset-top) - env(safe-area-inset-bottom)); border-radius: 10px; }
}
