﻿:root {
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-variant: #40322a;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --accent: #ff7a00;
  --accent-soft: rgba(255, 122, 0, 0.18);
  --border: rgba(255, 255, 255, 0.12);
  --interface-line: rgba(255, 255, 255, 0.08);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --container: 1440px;
  --margin-desktop: 80px;
  --margin-mobile: 24px;
  --section-gap: 160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

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

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

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.container {
  width: min(var(--container), 100% - (var(--margin-mobile) * 2));
  margin-inline: auto;
}

.content-offset {
  padding-left: 140px;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.eyebrow-row::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  pointer-events: none;
}

.site-header .container {
  padding-block: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-height: 34px;
}

.brand-logo--mobile {
  display: none;
}

@media (min-width: 768px) {
  .brand-logo--desktop {
    display: block;
  }

  .brand-logo--mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand-logo--desktop {
    display: none;
  }

  .brand-logo--mobile {
    display: block;
  }
}

.site-nav {
  display: block;
}

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

.main-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.main-nav a.is-active,
.main-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.72);
  color: var(--text);
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.social-rail {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 10px 14px;
}

.social-line {
  display: none;
  width: 1px;
  height: 64px;
  background: var(--interface-line);
}

.social-link {
  position: relative;
  display: inline-flex;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  color: var(--accent);
}

.social-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 124px 0 92px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  --hero-doctor-scale: 0.87;
  --hero-doctor-scale-start: 0.9135;
  animation: heroMediaFadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: opacity;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 22%;
  transform: scale(var(--hero-doctor-scale));
  transform-origin: center 28%;
  opacity: 0.74;
  mix-blend-mode: luminosity;
  animation: heroDoctorRise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  background: linear-gradient(to top, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.34), transparent 62%);
}

.hero-media::after {
  background: linear-gradient(to right, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.48), transparent 58%);
  animation: heroOverlayFadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: opacity;
}

.hero-content {
  position: absolute;
  z-index: 1;
  right: calc(14vw + 80px);
  bottom: 12vh;
  max-width: 420px;
  text-align: left;
  animation: heroContentFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
  will-change: opacity;
}

.hero-role {
  color: var(--accent);
  animation: heroRoleFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both;
  will-change: opacity;
}

.hero-eyebrow-row {
  margin-bottom: 8px;
}

.hero-eyebrow-row::before {
  display: none;
}

.hero-eyebrow-row .eyebrow {
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero-title {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 16ch;
  animation: heroTitleRiseIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.78s both;
  will-change: transform, opacity;
}

.hero-copy {
  margin: 0 0 14px;
  max-width: 38ch;
  color: var(--text-muted);
  border-left: 2px solid rgba(255, 122, 0, 0.28);
  padding: 3px 0 3px 10px;
  font-size: 0.78rem;
  line-height: 1.55;
  animation: heroCopyRiseIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.93s both;
  will-change: transform, opacity;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: heroActionsRiseIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 1.06s both;
  will-change: transform, opacity;
}

@keyframes heroMediaFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroDoctorRise {
  from {
    opacity: 0;
    transform: translateY(40px) scale(var(--hero-doctor-scale-start));
  }
  to {
    opacity: 0.74;
    transform: translateY(0) scale(var(--hero-doctor-scale));
  }
}

@keyframes heroOverlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroRoleFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroTitleRiseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyRiseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroActionsRiseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSocialRailInDesktop {
  from {
    opacity: 0;
    transform: translateX(-20px) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes heroSocialLineGrow {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes heroSocialIconIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.hero-actions .button {
  padding: 7px 12px;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero-actions .button-primary {
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.button-primary {
  background: var(--accent);
  color: var(--bg);
}

.button-primary:hover {
  background: #ffffff;
}

.button-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
  backdrop-filter: blur(6px);
}

.button-secondary:hover {
  background: var(--surface-variant);
}

.section {
  position: relative;
  padding: var(--section-gap) 0;
}

.surface {
  background: var(--surface);
}

.tech-grid-bg {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stance-panel {
  position: relative;
  border: 0;
  padding: 34px 0 8px;
  overflow: hidden;
  background: transparent;
}

.stance-panel::before {
  content: "“";
  position: absolute;
  top: -58px;
  left: 8px;
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 280px;
  line-height: 1;
  color: rgba(212, 96, 26, 0.08);
  pointer-events: none;
  z-index: 0;
}

.stance-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.stance-portrait-wrap {
  margin: 0;
  max-width: 360px;
}

.stance-portrait {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: grayscale(100%) contrast(108%) brightness(56%) saturate(0%);
  opacity: 0.82;
  mix-blend-mode: luminosity;
}

.stance-quote-wrap {
  position: relative;
  z-index: 1;
  border-left: 2px solid var(--accent);
  padding-left: clamp(24px, 4vw, 64px);
}

.stance-quote-wrap::after {
  content: "— Михайло Сливка";
  display: block;
  margin-top: 28px;
  font-family: "Space Grotesk", "SFMono-Regular", "Consolas", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.stance-text {
  position: relative;
  margin: 0;
  max-width: 62ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.14rem, 1.62vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.stance-text .stance-accent {
  color: var(--accent);
}

.stance-text strong {
  font-weight: 700;
}

.stance-quote-wrap::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent);
  transform-origin: top;
}

.stance-section.stance-reveal-init .eyebrow-row {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 860ms cubic-bezier(0.16, 1, 0.3, 1), transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms;
}

.stance-section.stance-reveal-init .stance-panel::before {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 120ms;
}

.stance-section.stance-reveal-init .stance-quote-wrap {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 180ms;
}

.stance-section.stance-reveal-init .stance-quote-wrap::before {
  transform: scaleY(0);
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 230ms;
}

.stance-section.stance-reveal-init .stance-text {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 860ms cubic-bezier(0.16, 1, 0.3, 1), transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 300ms;
}

.stance-section.stance-reveal-init .stance-quote-wrap::after {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 420ms;
}

.stance-section.stance-reveal-init.is-revealed .eyebrow-row,
.stance-section.stance-reveal-init.is-revealed .stance-panel::before,
.stance-section.stance-reveal-init.is-revealed .stance-quote-wrap,
.stance-section.stance-reveal-init.is-revealed .stance-text,
.stance-section.stance-reveal-init.is-revealed .stance-quote-wrap::after {
  opacity: 1;
  transform: translateY(0);
}

.stance-section.stance-reveal-init.is-revealed .stance-quote-wrap::before {
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-media img,
  .hero-media::after,
  .hero-content,
  .hero-role,
  .hero-title,
  .hero-copy,
  .hero-actions,
  .social-rail,
  .social-line,
  .social-link {
    animation: none !important;
  }

  .social-rail {
    opacity: 1 !important;
  }

  .social-line {
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }

  .social-link {
    opacity: 1 !important;
    transform: none !important;
  }

  .stance-section.stance-reveal-init .eyebrow-row,
  .stance-section.stance-reveal-init .stance-panel::before,
  .stance-section.stance-reveal-init .stance-quote-wrap,
  .stance-section.stance-reveal-init .stance-quote-wrap::before,
  .stance-section.stance-reveal-init .stance-text,
  .stance-section.stance-reveal-init .stance-quote-wrap::after {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .contact-card.reveal,
  .contact-card.reveal.is-visible {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .project-card.reveal,
  .project-card.reveal.is-visible {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.contact-section {
  border-block: 1px solid var(--interface-line);
}

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

.contact-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  padding: 28px 28px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.contact-card::before {
  content: attr(data-num);
  position: absolute;
  right: 14px;
  bottom: -10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(120px, 12vw, 180px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card:hover {
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-2px);
}

.contact-card.reveal {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.contact-card.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.contact-card.reveal-delay-1 {
  transition-delay: 0ms;
}

.contact-card.reveal-delay-2 {
  transition-delay: 140ms;
}

.contact-card.reveal-delay-3 {
  transition-delay: 280ms;
}

body.home .contact-section.tech-grid-bg .contact-card.reveal {
  transition: opacity 1640ms cubic-bezier(0.16, 1, 0.3, 1), transform 1640ms cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

body.home .contact-section.tech-grid-bg .contact-card.reveal-delay-1 {
  transition-delay: 0ms;
}

body.home .contact-section.tech-grid-bg .contact-card.reveal-delay-2 {
  transition-delay: 280ms;
}

body.home .contact-section.tech-grid-bg .contact-card.reveal-delay-3 {
  transition-delay: 560ms;
}

.contact-index {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  color: var(--accent);
  opacity: 0.62;
  letter-spacing: 0.14em;
}

.contact-title {
  margin: 2px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
}

.contact-copy {
  margin: 0 0 auto;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 122, 0, 0.88);
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.contact-cta:hover {
  color: var(--accent);
  opacity: 1;
  transform: translateX(2px);
}

.projects-intro {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}

.project-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  position: relative;
  border: 1px solid var(--border);
  padding: 24px 24px 22px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.82));
  min-height: 220px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.project-card.reveal {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1150ms cubic-bezier(0.16, 1, 0.3, 1), transform 1150ms cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}

.project-card.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.project-card.reveal-delay-1 {
  transition-delay: 0ms;
}

.project-card.reveal-delay-2 {
  transition-delay: 180ms;
}

.project-card.reveal-delay-3 {
  transition-delay: 360ms;
}

.project-card.reveal-delay-4 {
  transition-delay: 540ms;
}

.project-card:hover {
  border-color: rgba(255, 122, 0, 0.42);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.72), rgba(5, 5, 5, 0.92));
}

.project-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.project-card:hover .project-arrow {
  color: var(--accent);
}

.project-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 2px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.25;
}

.project-copy {
  margin: 14px 0 0;
  max-width: 44ch;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.project-copy .project-description-line {
  display: block;
}

.cta {
  padding: 0;
  border-top: 1px solid var(--interface-line);
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.98), var(--bg));
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  right: -256px;
  bottom: -256px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.72);
  padding: 42px 28px;
}

.contact-form {
  width: 100%;
}

.form-field {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0 12px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.form-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  padding: 0;
}

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

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

.form-submit {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease;
}

.form-submit:hover {
  background: #ffffff;
}

.cta-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 122, 0, 0.35);
  color: rgba(255, 122, 0, 0.9);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-title {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

.cta-copy {
  margin: 0 auto 26px;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.cta-button {
  min-width: 230px;
  justify-content: center;
}

.contact-page {
  background: var(--bg);
  color: var(--text-primary, var(--text));
  padding-top: clamp(108px, 12vw, 150px);
}

.contact-hero {
  position: relative;
  padding: clamp(24px, 4vw, 42px) 0 clamp(34px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.66)),
    var(--bg-surface, var(--surface));
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto -110px -220px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.08);
  filter: blur(90px);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  border-left: 2px solid var(--accent);
  padding-left: clamp(18px, 2.4vw, 30px);
}

.contact-hero-inner .eyebrow-row {
  margin-bottom: 12px;
}

.contact-hero-inner .eyebrow-row::before {
  display: none;
}

.contact-hero-inner h1 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-primary, var(--text));
}

.contact-hero-inner p {
  margin: 0;
  max-width: 56ch;
  color: var(--text-secondary, var(--text-muted));
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.75;
}

.contact-form-section {
  padding: clamp(44px, 6vw, 68px) 0 clamp(34px, 5vw, 54px);
}

.contact-page .contact-form {
  max-width: 780px;
}

.contact-page .form-field {
  border-bottom: 1px solid var(--border);
  padding: 16px 0 14px;
}

.contact-page .form-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary, rgba(255, 255, 255, 0.62));
}

.contact-page .form-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-primary, rgba(255, 255, 255, 0.94));
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  padding: 0;
}

.contact-page .form-input::placeholder {
  color: var(--text-secondary, rgba(255, 255, 255, 0.46));
}

.contact-page .form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page .form-submit {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--bg);
  padding: 11px 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

.contact-page .form-submit:hover {
  background: #ffffff;
  color: var(--bg);
}

.contact-channels {
  padding: clamp(24px, 4vw, 36px) 0 clamp(72px, 9vw, 108px);
}

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

.contact-channel-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.86), rgba(5, 5, 5, 0.76));
  padding: 24px 22px 20px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-channel-card h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
}

.contact-channel-card p {
  margin: 0;
  color: var(--text-secondary, var(--text-muted));
  line-height: 1.72;
  font-size: 0.9rem;
}

.contact-channel-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--interface-line);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 122, 0, 0.9);
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-channel-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.contact-page-note {
  margin-top: clamp(30px, 4vw, 46px);
  padding-top: 20px;
  border-top: 1px solid var(--interface-line);
  max-width: 760px;
}

.contact-page-note h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.16rem, 2vw, 1.44rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.contact-page-note p {
  margin: 0;
  color: var(--text-secondary, var(--text-muted));
  line-height: 1.72;
}

.contact-page .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.contact-page .reveal-delay-1 {
  transition-delay: 80ms;
}

.contact-page .reveal-delay-2 {
  transition-delay: 180ms;
}

.contact-page .reveal-delay-3 {
  transition-delay: 280ms;
}

/* Video page */
.video-page {
  background: var(--bg);
  color: var(--text);
  padding-top: clamp(94px, 10vw, 130px);
}

.video-page .video-hero {
  position: relative;
  padding: clamp(22px, 3.2vw, 34px) 0 clamp(40px, 5.2vw, 62px);
  overflow: hidden;
}

.video-page .video-hero::before {
  content: "";
  position: absolute;
  left: -200px;
  top: -220px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.04);
  filter: blur(120px);
  pointer-events: none;
}

.video-page .video-hero .eyebrow-row::before {
  display: block;
}

.video-page .featured-section,
.video-page #all-videos {
  padding-top: clamp(40px, 4.5vw, 64px);
  padding-bottom: clamp(42px, 4.5vw, 66px);
}

.video-page .video-hero-title {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.video-page .video-hero-title span {
  color: var(--accent);
}

.video-page .video-hero-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.72;
  border-left: 2px solid rgba(255, 122, 0, 0.28);
  padding-left: 16px;
}

.video-page .featured-section {
  border-block: 1px solid var(--interface-line);
}

.video-page .featured-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.video-page .featured-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.video-page .featured-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-page .featured-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 2px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

.video-page .featured-title {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.video-page .featured-desc {
  margin: 0 0 18px;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.video-page .featured-date {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.video-page .featured-link-wrap {
  margin: 18px 0 0;
}

.video-page .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.video-page .filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.video-page .filter-btn:hover {
  border-color: rgba(255, 122, 0, 0.4);
  color: var(--text);
}

.video-page .filter-btn.is-active {
  background: var(--accent-soft);
  border-color: rgba(255, 122, 0, 0.5);
  color: var(--accent);
}

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

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

.video-page .video-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.video-page .video-card:hover {
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-2px);
}

.video-page .video-card-link {
  display: block;
}

.video-page .video-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 20, 20, 1), rgba(35, 25, 18, 0.8));
}

.video-page .video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  mix-blend-mode: luminosity;
  transition: opacity 0.3s ease;
}

.video-page .video-card:hover .video-card-thumb img {
  opacity: 0.9;
  mix-blend-mode: normal;
}

.video-page .thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-page .thumb-play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(5, 5, 5, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease;
}

.video-page .video-card:hover .thumb-play-circle {
  border-color: var(--accent);
  background: rgba(255, 122, 0, 0.15);
  color: var(--accent);
}

.video-page .thumb-play-circle .material-symbols-outlined {
  font-size: 24px;
}

.video-page .thumb-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 6px;
  border-radius: 2px;
  background: rgba(5, 5, 5, 0.75);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.video-page .video-card-body {
  padding: 20px 20px 18px;
}

.video-page .video-card-category {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.video-page .video-card-title {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.video-page .video-card-desc {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.video-page .video-card-date {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.video-page .video-cta {
  padding-top: 0;
}

/* Blog page */
.blog-page {
  background: var(--bg);
  color: var(--text);
  padding-top: clamp(94px, 10vw, 130px);
}

.blog-page .blog-hero {
  position: relative;
  padding: clamp(28px, 4vw, 42px) 0 clamp(52px, 7vw, 84px);
  overflow: hidden;
}

.blog-page .blog-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -220px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.035);
  filter: blur(120px);
  pointer-events: none;
}

.blog-page .blog-hero-title {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.blog-page .blog-hero-title span {
  color: var(--accent);
}

.blog-page .blog-hero-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.72;
  border-left: 2px solid rgba(255, 122, 0, 0.28);
  padding-left: 16px;
}

.blog-page .featured-section {
  border-block: 1px solid var(--interface-line);
}

.blog-page .featured-section,
.blog-page #all-articles {
  padding-top: clamp(40px, 4.5vw, 64px);
  padding-bottom: clamp(42px, 4.5vw, 66px);
}

.blog-page .featured-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-page .featured-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.blog-page .featured-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(20, 20, 20, 1), rgba(35, 25, 18, 0.6));
}

.blog-page .featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  mix-blend-mode: luminosity;
  transition: opacity 0.35s ease, mix-blend-mode 0.35s ease;
}

.blog-page .featured-thumb-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.34);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-page .featured-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.7), transparent 50%);
  pointer-events: none;
}

.blog-page .featured-link:hover .featured-thumb img {
  opacity: 0.88;
  mix-blend-mode: normal;
}

.blog-page .featured-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-page .featured-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 2px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

.blog-page .featured-title {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.blog-page .featured-link:hover .featured-title {
  color: var(--accent);
}

.blog-page .featured-excerpt {
  margin: 0 0 20px;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.blog-page .featured-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-page .featured-date,
.blog-page .featured-read-time {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-page .featured-date {
  color: rgba(255, 255, 255, 0.4);
}

.blog-page .featured-read-time {
  color: rgba(255, 255, 255, 0.32);
}

.blog-page .featured-read-time::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  margin-right: 12px;
  vertical-align: middle;
}

.blog-page .featured-read-link-wrap {
  margin-top: 20px;
}

.blog-page .read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 122, 0, 0.88);
  transition: color 0.22s ease, transform 0.22s ease;
}

.blog-page .featured-link:hover .read-more-link {
  color: var(--accent);
  transform: translateX(2px);
}

.blog-page .read-more-link .material-symbols-outlined {
  font-size: 16px;
}

.blog-page .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.blog-page .filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.blog-page .filter-btn:hover {
  border-color: rgba(255, 122, 0, 0.4);
  color: var(--text);
}

.blog-page .filter-btn.is-active {
  background: var(--accent-soft);
  border-color: rgba(255, 122, 0, 0.5);
  color: var(--accent);
}

.blog-page .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-page .article-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.blog-page .article-card:hover {
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-2px);
}

.blog-page .article-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-page .article-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 20, 20, 1), rgba(35, 25, 18, 0.8));
}

.blog-page .article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  mix-blend-mode: luminosity;
  transition: opacity 0.35s ease, mix-blend-mode 0.35s ease;
}

.blog-page .article-card:hover .article-card-thumb img {
  opacity: 0.85;
  mix-blend-mode: normal;
}

.blog-page .article-card-thumb-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.34);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-page .article-card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.55), transparent 40%);
  pointer-events: none;
}

.blog-page .article-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-page .article-card-category {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
}

.blog-page .article-card-title {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.005em;
  transition: color 0.25s ease;
}

.blog-page .article-card:hover .article-card-title {
  color: var(--accent);
}

.blog-page .article-card-excerpt {
  margin: 0 0 16px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
}

.blog-page .article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--interface-line);
}

.blog-page .article-card-dateline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-page .article-card-date,
.blog-page .article-card-read-time {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-page .article-card-date {
  color: rgba(255, 255, 255, 0.35);
}

.blog-page .article-card-read-time {
  color: rgba(255, 255, 255, 0.25);
}

.blog-page .article-card-read-time::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 8px;
  vertical-align: middle;
}

.blog-page .article-card-arrow {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 18px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.blog-page .article-card:hover .article-card-arrow {
  color: var(--accent);
  opacity: 1;
}

.blog-page .article-card-empty .article-card-body {
  min-height: 220px;
  justify-content: center;
}

.blog-page .blog-pagination {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-page .blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.blog-page .blog-pagination .page-numbers:hover {
  border-color: rgba(255, 122, 0, 0.5);
  color: var(--text);
}

.blog-page .blog-pagination .page-numbers.current {
  background: var(--accent-soft);
  border-color: rgba(255, 122, 0, 0.5);
  color: var(--accent);
}

/* Single article page */
.single-article-page {
  background: var(--bg);
  color: var(--text);
}

.single-article-page .article-hero {
  position: relative;
  padding: 180px 0 40px;
  overflow: hidden;
}

.single-article-page .article-hero::before {
  content: "";
  position: absolute;
  left: -200px;
  top: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.03);
  filter: blur(120px);
  pointer-events: none;
}

.single-article-page .article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: none;
}

.single-article-page .article-hero-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 2px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.single-article-page .article-hero-title {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.single-article-page .article-hero-excerpt {
  margin: 0 0 28px;
  max-width: none;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  border-left: 2px solid rgba(255, 122, 0, 0.28);
  padding-left: 16px;
}

.single-article-page .article-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.single-article-page .meta-author,
.single-article-page .meta-date,
.single-article-page .meta-read-time {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.single-article-page .meta-author {
  color: rgba(255, 255, 255, 0.6);
}

.single-article-page .meta-date {
  color: rgba(255, 255, 255, 0.4);
}

.single-article-page .meta-read-time {
  color: rgba(255, 255, 255, 0.32);
}

.single-article-page .meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.single-article-page .article-body-section {
  padding-top: 0;
}

.single-article-page .article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding: 0;
}

.single-article-page .toc {
  position: sticky;
  top: 40px;
  align-self: start;
}

.single-article-page .article-toc--dropdown {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.single-article-page .article-toc__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid var(--interface-line);
  background: transparent;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.single-article-page .article-toc__icon {
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.24s ease;
}

.single-article-page .article-toc--dropdown.is-open .article-toc__icon {
  transform: rotate(180deg);
}

.single-article-page .article-toc__list {
  padding: 8px 18px 14px;
}

.single-article-page .article-toc__list[hidden] {
  display: none;
}

.single-article-page .toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--interface-line);
}

.single-article-page .toc-item {
  padding: 6px 0 6px 16px;
}

.single-article-page .toc-item-h3 {
  padding-left: 28px;
}

.single-article-page .toc-item a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  transition: color 0.22s ease;
}

.single-article-page .toc-item a:hover {
  color: var(--accent);
}

.single-article-page .article-content {
  max-width: none;
  width: 100%;
}

.single-article-page .article-content h2 {
  margin: 56px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--interface-line);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.single-article-page .article-content h3 {
  margin: 40px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.single-article-page .article-content h2,
.single-article-page .article-content h3,
.single-article-page .article-content h4 {
  max-width: 860px;
}

.single-article-page .article-content p {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text-muted);
}

.single-article-page .article-content p,
.single-article-page .article-content ul,
.single-article-page .article-content ol,
.single-article-page .article-content blockquote,
.single-article-page .article-content figure,
.single-article-page .article-content table,
.single-article-page .article-content .wp-block-embed {
  max-width: none;
  width: 100%;
}

.single-article-page .article-content strong {
  color: var(--text);
  font-weight: 600;
}

.single-article-page .article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 122, 0, 0.35);
  transition: text-decoration-color 0.22s ease;
}

.single-article-page .article-content a:hover {
  text-decoration-color: var(--accent);
}

.single-article-page .article-content ul,
.single-article-page .article-content ol {
  margin: 0 0 24px;
  color: var(--text-muted);
}

.single-article-page .article-content ul {
  list-style: none;
  padding-left: 0;
}

.single-article-page .article-content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1.02rem;
  line-height: 1.72;
}

.single-article-page .article-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0.55;
}

.single-article-page .article-content ol {
  padding-left: 20px;
}

.single-article-page .article-content ol li {
  margin-bottom: 10px;
  padding-left: 4px;
  font-size: 1.02rem;
  line-height: 1.72;
}

.single-article-page .article-content ol li::marker {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}

.single-article-page .article-content blockquote {
  margin: 36px 0;
  padding: 24px 24px 24px 28px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 122, 0, 0.04);
}

.single-article-page .article-content blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.65;
}

.single-article-page .article-content blockquote cite {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

.single-article-page .article-content figure {
  margin: 40px 0;
}

.single-article-page .article-content figure img {
  width: 100%;
  border: 1px solid var(--border);
  opacity: 0.82;
  mix-blend-mode: luminosity;
}

.single-article-page .article-content figcaption,
.single-article-page .article-content .wp-caption-text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.single-article-page .article-content .wp-block-embed,
.single-article-page .article-content .wp-block-embed__wrapper,
.single-article-page .article-content iframe {
  max-width: 100%;
}

.single-article-page .article-content .wp-block-embed {
  margin: 40px 0;
}

.single-article-page .article-content table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.single-article-page .article-content thead th {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 122, 0, 0.3);
  text-align: left;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.single-article-page .article-content tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--interface-line);
  color: var(--text-muted);
  line-height: 1.55;
}

.single-article-page .article-content tbody tr:last-child td {
  border-bottom: none;
}

.single-article-page .post-tags-bar {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--interface-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.single-article-page .single-post-booking-section {
  margin: clamp(40px, 5vw, 64px) 0 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.single-article-page .single-post-booking-inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.single-article-page .single-post-booking-inner .eyebrow-row {
  margin-bottom: 16px;
}

.single-article-page .single-post-booking-inner #zapys.slyvka-booking-form-section,
.single-article-page .single-post-booking-inner .booking-form.slyvka-booking-form-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.single-article-page .single-post-booking-inner #zapys .slyvka-booking-form-inner {
  width: 100%;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.single-article-page .single-post-booking-section #zapys .wpcf7 form > p:empty {
  display: none;
}

.single-post .single-post-booking-section .hidden-fields-container,
.single-post .single-post-booking-section .wpcf7-hidden,
.single-post .single-post-booking-section input[type="hidden"],
.single-article-page .single-post-booking-section .hidden-fields-container,
.single-article-page .single-post-booking-section .wpcf7-hidden,
.single-article-page .single-post-booking-section input[type="hidden"] {
  display: none !important;
}

.single-post .single-post-booking-section .screen-reader-response,
.single-article-page .single-post-booking-section .screen-reader-response {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.single-article-page .single-post-booking-section #zapys .wpcf7 form .wpcf7-response-output:empty {
  display: none;
}

.single-article-page .single-post-booking-section #zapys .wpcf7 form .wpcf7-response-output {
  margin-top: 18px;
}

.single-article-page .single-post-booking-section #zapys .wpcf7 input[type="text"],
.single-article-page .single-post-booking-section #zapys .wpcf7 input[type="tel"] {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.single-article-page .single-post-booking-section #zapys .wpcf7 input[type="submit"],
.single-article-page .single-post-booking-section #zapys .wpcf7 .wpcf7-submit,
.single-article-page .single-post-booking-section #zapys .wpcf7 button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.single-article-page .single-post-booking-section,
.single-article-page .single-post-booking-section * {
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .single-post .article-layout,
  .single-article-page .article-layout {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .single-post .article-content,
  .single-article-page .article-content {
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
  }

  .single-post .article-content p,
  .single-post .article-content li,
  .single-article-page .article-content p,
  .single-article-page .article-content li {
    font-size: 16px;
    line-height: 1.65;
  }

  .single-post .article-content h2,
  .single-article-page .article-content h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-top: 44px;
    margin-bottom: 18px;
  }

  .single-post .article-content h3,
  .single-article-page .article-content h3 {
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-top: 34px;
    margin-bottom: 14px;
  }

  .single-post .article-content h4,
  .single-article-page .article-content h4 {
    font-size: 20px;
    line-height: 1.25;
  }

  .single-post .article-content table,
  .single-article-page .article-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .single-post .article-content table th,
  .single-post .article-content table td,
  .single-article-page .article-content table th,
  .single-article-page .article-content table td {
    white-space: nowrap;
  }

  .single-post .article-content img,
  .single-post .article-content video,
  .single-post .article-content iframe,
  .single-post .article-content embed,
  .single-post .article-content table,
  .single-post .article-content .single-post-booking-section,
  .single-article-page .article-content img,
  .single-article-page .article-content video,
  .single-article-page .article-content iframe,
  .single-article-page .article-content embed,
  .single-article-page .article-content table,
  .single-article-page .article-content .single-post-booking-section {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .single-article-page .single-post-booking-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 44px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .single-article-page .single-post-booking-inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .single-article-page .single-post-booking-inner #zapys.slyvka-booking-form-section,
  .single-article-page .single-post-booking-inner .booking-form.slyvka-booking-form-section {
    width: 100%;
    max-width: 100%;
  }

  .single-article-page .single-post-booking-section input,
  .single-article-page .single-post-booking-section button {
    max-width: 100%;
    box-sizing: border-box;
  }

  .single-post .author-block,
  .single-article-page .author-block {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}

.single-article-page .post-tags-bar-label {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.single-article-page .post-tag {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.single-article-page .post-tag:hover {
  border-color: rgba(255, 122, 0, 0.4);
  color: var(--accent);
}

.single-article-page .author-block {
  margin-top: 64px;
  padding: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  display: flex;
  align-items: center;
  gap: 22px;
}

.single-article-page .author-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid var(--border);
  overflow: hidden;
  flex: 0 0 112px;
  background: var(--surface-variant);
}

.single-article-page .author-avatar img,
.single-article-page .author-avatar .author-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  mix-blend-mode: luminosity;
}

.single-article-page .author-name {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 500;
}

.single-article-page .author-role {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.single-article-page .author-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.single-article-page .author-social-link {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.single-article-page .author-social-link:hover {
  color: var(--accent);
  opacity: 1;
  transform: translateY(-1px);
}

.single-article-page .author-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.single-article-page .author-bio {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.single-article-page .related-section {
  border-top: 1px solid var(--interface-line);
}

.single-article-page .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.single-article-page .article-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.single-article-page .article-card:hover {
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-2px);
}

.single-article-page .article-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.single-article-page .article-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 20, 20, 1), rgba(35, 25, 18, 0.8));
}

.single-article-page .article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  mix-blend-mode: luminosity;
  transition: opacity 0.35s ease, mix-blend-mode 0.35s ease;
}

.single-article-page .article-card:hover .article-card-thumb img {
  opacity: 0.85;
  mix-blend-mode: normal;
}

.single-article-page .article-card-thumb-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.34);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.single-article-page .article-card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.55), transparent 40%);
  pointer-events: none;
}

.single-article-page .article-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.single-article-page .article-card-category {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.single-article-page .article-card-title {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.005em;
  transition: color 0.25s ease;
}

.single-article-page .article-card:hover .article-card-title {
  color: var(--accent);
}

.single-article-page .article-card-excerpt {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
}

.single-article-page .article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--interface-line);
}

.single-article-page .article-card-dateline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-article-page .article-card-date,
.single-article-page .article-card-read-time {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.single-article-page .article-card-date {
  color: rgba(255, 255, 255, 0.35);
}

.single-article-page .article-card-read-time {
  color: rgba(255, 255, 255, 0.25);
}

.single-article-page .article-card-read-time::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 8px;
  vertical-align: middle;
}

.single-article-page .article-card-arrow {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 18px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.single-article-page .article-card:hover .article-card-arrow {
  color: var(--accent);
  opacity: 1;
}

.site-footer {
  border-top: 1px solid var(--interface-line);
  background: var(--bg);
}

.site-footer .container {
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer .container.footer-single {
  justify-content: center;
  text-align: center;
}

.footer-brand {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.74);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.footer-nav a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-note {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.footer-signoff {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.footer-signoff a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-signoff a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 1024px) {
  :root {
    --margin-desktop: 40px;
    --section-gap: 120px;
  }

  .content-offset {
    padding-left: 0;
  }

  .video-page {
    padding-top: 104px;
  }

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

  .video-page .featured-layout {
    grid-template-columns: 1fr;
  }

  .video-page .video-card-body {
    padding: 18px 18px 16px;
  }

  .contact-page {
    padding-top: 104px;
  }

  .contact-hero {
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .contact-hero-inner {
    padding-left: 16px;
  }

  .contact-form-section {
    padding-top: 36px;
    padding-bottom: 22px;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-channel-card {
    min-height: 0;
    padding: 22px 18px 18px;
  }

  .contact-page-note {
    margin-top: 24px;
  }

  .site-header .container {
    position: relative;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(12px);
  }

  .site-nav .main-nav a {
    padding: 10px 4px;
    border-bottom: 1px solid var(--interface-line);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

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

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.has-mobile-menu-open {
    overflow: hidden;
  }

  .site-header.is-menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    align-items: flex-end;
    padding: 116px 0 80px;
  }

  .hero-content {
    right: 24px;
    bottom: 9vh;
    max-width: min(380px, calc(100% - 48px));
  }

  .brand-logo {
    max-height: 30px;
  }

  .hero-media img {
    --hero-doctor-scale: 0.88;
    --hero-doctor-scale-start: 0.924;
    object-position: 60% 20%;
    transform: scale(var(--hero-doctor-scale));
    opacity: 0.66;
  }

  .hero-media::after {
    background: linear-gradient(to right, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.34), transparent 76%);
  }

  .social-label {
    display: none;
  }

  .contact-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 0;
    padding: 24px 20px 20px;
  }

  .project-card {
    min-height: 0;
    padding: 22px 20px 20px;
  }

  .project-title {
    font-size: 1.35rem;
  }

  .project-copy {
    margin-top: 10px;
  }

  .cta-inner {
    padding: 30px 18px;
  }

  .cta-title {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
  }

  .stance-panel {
    padding: 22px 0 6px;
  }

  .stance-portrait-wrap {
    max-width: 300px;
  }

  .stance-quote-wrap {
    padding-left: 12px;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
    padding-block: 20px;
  }
}

@media (min-width: 1025px) {
  .container {
    width: min(var(--container), 100% - (var(--margin-desktop) * 2));
  }

  .video-page .featured-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .hero-content {
    right: 14vw;
    bottom: 4vh;
  }

  .stance-layout {
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 36px;
  }

  .stance-portrait-wrap {
    justify-self: center;
  }

  .social-rail {
    left: calc(var(--margin-desktop) + 180px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 0;
    animation: heroSocialRailInDesktop 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    will-change: transform, opacity;
  }

  .social-line {
    display: block;
    height: 48px;
    opacity: 0;
    transform: scaleY(0);
    will-change: transform, opacity;
  }

  .social-rail .social-line:first-child {
    transform-origin: top;
    animation: heroSocialLineGrow 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.56s both;
  }

  .social-rail .social-line:last-child {
    transform-origin: bottom;
    animation: heroSocialLineGrow 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.98s both;
  }

  .social-link {
    opacity: 0;
    transform: translateY(10px);
    will-change: transform, opacity;
  }

  .social-rail .social-link:nth-of-type(1) {
    animation: heroSocialIconIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.66s both;
  }

  .social-rail .social-link:nth-of-type(2) {
    animation: heroSocialIconIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.76s both;
  }

  .social-rail .social-link:nth-of-type(3) {
    animation: heroSocialIconIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.86s both;
  }

  .social-link svg {
    width: 27px;
    height: 27px;
  }

  .hero-media img {
    --hero-doctor-scale: 1.02;
    --hero-doctor-scale-start: 1.071;
    object-position: 60% 20%;
    transform: scale(var(--hero-doctor-scale));
    transform-origin: center 22%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button-primary {
    width: 100%;
  }

  .social-label {
    display: block;
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%) translateX(-4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .social-link:hover .social-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }
}

@media (max-width: 640px) {
  :root {
    --section-gap: 96px;
  }

  .brand-logo {
    max-height: 28px;
  }

  .video-page {
    padding-top: 94px;
  }

  .video-page .video-hero {
    padding: 20px 0 36px;
  }

  .video-page .video-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .video-page .video-hero-copy {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .video-page .video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .video-page .filter-bar {
    gap: 8px;
    margin-bottom: 24px;
  }

  .video-page .filter-btn {
    padding: 6px 12px;
    font-size: 10px;
  }

  .video-page .video-card-body {
    padding: 16px 16px 14px;
  }

  .video-page .video-card-title {
    font-size: 1rem;
  }

  .video-page .featured-title {
    font-size: 1.3rem;
  }

  .video-page .featured-link {
    width: 100%;
    justify-content: center;
  }

  .contact-page {
    padding-top: 94px;
  }

  .contact-hero-inner h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .contact-hero-inner p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .contact-page .form-input {
    font-size: 0.94rem;
  }

  .contact-page .form-submit {
    width: 100%;
    justify-content: center;
  }

  .contact-channel-card h2 {
    font-size: 1.16rem;
  }

  .contact-channel-card p {
    font-size: 0.86rem;
    line-height: 1.64;
  }

  .hero-media img {
    --hero-doctor-scale: 0.92;
    --hero-doctor-scale-start: 0.966;
    object-position: 50% 16%;
    transform: scale(var(--hero-doctor-scale));
  }

  .stance-panel::before {
    font-size: 160px;
    top: -26px;
    left: 4px;
  }

  .stance-quote-wrap {
    padding-left: 20px;
  }

  .hero-content {
    left: 50%;
    right: auto;
    bottom: 64px;
    transform: translateX(-50%);
    width: min(92vw, 360px);
    max-width: none;
  }

  .hero-eyebrow-row .eyebrow {
    font-size: 8px;
  }

  .hero-title {
    font-size: clamp(1.15rem, 6.5vw, 1.75rem);
    line-height: 1.2;
  }

  .hero-copy {
    padding-left: 10px;
    margin-bottom: 12px;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .social-rail {
    left: 50%;
    right: auto;
    bottom: 48px;
    width: auto;
    max-width: calc(100vw - 20px);
    gap: 14px;
    padding: 9px 12px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .contact-grid,
  .project-grid {
    gap: 14px;
  }

  .contact-title {
    font-size: 1.2rem;
  }

  .contact-copy,
  .project-copy,
  .cta-copy {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .cta-button {
    min-width: 0;
    width: 100%;
  }

  .footer-nav {
    gap: 14px;
  }
}

@media (min-width: 1025px) {
  .blog-page .featured-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .blog-page {
    padding-top: 104px;
  }

  .blog-page .blog-hero {
    padding: 24px 0 52px;
  }

  .blog-page .featured-layout {
    grid-template-columns: 1fr;
  }

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

  .blog-page .article-card-body {
    padding: 20px 18px 18px;
  }
}

@media (max-width: 640px) {
  .blog-page {
    padding-top: 94px;
  }

  .blog-page .blog-hero {
    padding: 20px 0 44px;
  }

  .blog-page .blog-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .blog-page .blog-hero-copy {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .blog-page .filter-bar {
    gap: 8px;
    margin-bottom: 34px;
  }

  .blog-page .filter-btn {
    padding: 6px 12px;
    font-size: 10px;
  }

  .blog-page .article-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-page .article-card-body {
    padding: 18px 18px 16px;
  }

  .blog-page .article-card-title {
    font-size: 1rem;
  }

  .blog-page .featured-title {
    font-size: 1.3rem;
  }

  .blog-page .featured-section,
  .blog-page #all-articles {
    padding-top: 34px;
    padding-bottom: 38px;
  }
}

@media (min-width: 1025px) {
  .single-article-page .article-layout {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
  }
}

@media (max-width: 1024px) {
  .single-article-page .article-hero {
    padding: 140px 0 40px;
  }

  .single-article-page .article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .single-article-page .toc {
    position: static;
  }

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

  .single-article-page .article-card-body {
    padding: 20px 18px 18px;
  }
}

@media (max-width: 640px) {
  .single-article-page .article-hero {
    padding: 120px 0 32px;
  }

  .single-article-page .article-hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .single-article-page .article-hero-excerpt {
    font-size: 0.95rem;
  }

  .single-article-page .article-content h2 {
    margin-top: 40px;
    font-size: 1.25rem;
  }

  .single-article-page .article-content h3 {
    margin-top: 32px;
    font-size: 1.1rem;
  }

  .single-article-page .article-content p,
  .single-article-page .article-content ul li,
  .single-article-page .article-content ol li {
    font-size: 0.96rem;
  }

  .single-article-page .article-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .single-article-page .article-card-body {
    padding: 18px 18px 16px;
  }

  .single-article-page .article-card-title {
    font-size: 1rem;
  }

  .single-article-page .author-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 14px;
  }

  .single-article-page .author-avatar {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
  }

  .single-article-page .author-name {
    font-size: clamp(20px, 5.5vw, 22px);
  }

  .single-article-page .author-socials {
    gap: 10px;
    margin-top: 9px;
  }
}

@media (min-width: 1025px) {
  body.home .slyvka-home-page .section {
    padding-top: clamp(72px, 5vw, 108px);
    padding-bottom: clamp(72px, 5vw, 108px);
  }

  body.home .slyvka-home-page .stance-panel {
    padding-top: 24px;
  }

  body.home .slyvka-home-page .contact-card {
    padding-top: 22px;
  }

  body.home .slyvka-home-page .project-card {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  body.home,
  body.home .slyvka-home-page {
    max-width: 100%;
    overflow-x: clip;
  }

  body.home .hero {
    min-height: 100svh;
    padding: 106px 0 60px;
  }

  body.home .hero-media img {
    --hero-doctor-scale: 1.03;
    --hero-doctor-scale-start: 1.0815;
    object-fit: cover;
    object-position: 52% 14%;
    transform-origin: center 16%;
  }

  body.home .hero-content {
    left: 20px;
    right: 20px;
    bottom: 72px;
    transform: none;
    width: auto;
    max-width: 352px;
  }

  body.home .social-rail {
    left: auto;
    right: max(10px, env(safe-area-inset-right));
    top: 58%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
    padding: 10px 9px;
    z-index: 50;
  }

  body.home .social-rail .social-link[aria-label="Instagram"] {
    order: 1;
  }

  body.home .social-rail .social-link[aria-label="Facebook"] {
    order: 2;
  }

  body.home .social-rail .social-link[aria-label="YouTube"] {
    order: 3;
  }
}

/* For Patients page */
.for-patients-page .patients-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.for-patients-page .patients-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.03);
  filter: blur(120px);
  pointer-events: none;
}

.for-patients-page .patients-hero-title {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.for-patients-page .patients-hero-title span {
  color: var(--accent);
}

.for-patients-page .patients-hero-copy {
  margin: 0 0 32px;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  border-left: 2px solid rgba(255, 122, 0, 0.28);
  padding-left: 16px;
}

.for-patients-page .problem-section {
  border-block: 1px solid var(--interface-line);
}

.for-patients-page .problem-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.for-patients-page .problem-intro {
  margin: 0;
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.for-patients-page .problem-promises {
  list-style: none;
  margin: 0;
  padding: 0;
}

.for-patients-page .problem-promises li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--interface-line);
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.for-patients-page .problem-promises li:last-child {
  border-bottom: none;
}

.for-patients-page .problem-promises li::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: 14px;
  font-family: "Times New Roman", serif;
  font-size: 1.6rem;
  color: rgba(255, 122, 0, 0.3);
  line-height: 1;
}

.for-patients-page .problem-answer {
  margin: 32px 0 0;
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.for-patients-page .problem-answer strong {
  color: var(--text);
  font-weight: 600;
}

.for-patients-page .includes-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.for-patients-page .includes-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.for-patients-page .includes-card:hover {
  border-color: rgba(255, 122, 0, 0.5);
  transform: translateY(-2px);
}

.for-patients-page .includes-card-index {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.for-patients-page .includes-card-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.35;
}

.for-patients-page .includes-card-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  flex: 1;
}

.for-patients-page .for-whom-section {
  border-block: 1px solid var(--interface-line);
}

.for-patients-page .for-whom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.for-patients-page .for-whom-item {
  position: relative;
  padding: 22px 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.82));
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.3s ease;
}

.for-patients-page .for-whom-item:hover {
  border-color: rgba(255, 122, 0, 0.4);
}

.for-patients-page .for-whom-icon {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.6;
  margin-top: 2px;
}

.for-patients-page .for-whom-icon .material-symbols-outlined {
  font-size: 20px;
}

.for-patients-page .for-whom-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.for-patients-page .for-patients-booking #zapys.slyvka-booking-form-section,
.for-patients-page .for-patients-booking .booking-form.slyvka-booking-form-section {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background: transparent;
}

.for-patients-page .for-patients-booking #zapys .slyvka-booking-form-inner {
  width: min(560px, 100%);
  margin: 0;
}

@media (min-width: 1025px) {
  .for-patients-page .section {
    padding-top: clamp(72px, 5vw, 104px);
    padding-bottom: clamp(72px, 5vw, 104px);
  }

  .for-patients-page .patients-hero {
    padding-top: 156px;
    padding-bottom: 88px;
  }

  .for-patients-page .problem-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .for-patients-page .includes-card {
    padding-top: 20px;
  }

  .for-patients-page .for-whom-item {
    padding-top: 18px;
  }
}

@media (max-width: 1024px) {
  .for-patients-page .patients-hero {
    padding: 140px 0 80px;
  }

  .for-patients-page .problem-layout {
    gap: 36px;
  }

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

  .for-patients-page .for-whom-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .for-patients-page .patients-hero {
    padding: 120px 0 64px;
  }

  .for-patients-page .patients-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .for-patients-page .patients-hero-copy {
    font-size: 0.92rem;
  }

  .for-patients-page .includes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .for-patients-page .includes-card {
    padding: 20px 18px 18px;
  }

  .for-patients-page .for-whom-item {
    padding: 18px;
  }
}

/* For Patients page refinements (scoped) */
.slyvka-for-patients-page .section {
  padding-top: clamp(56px, 4.2vw, 72px);
  padding-bottom: clamp(56px, 4.2vw, 72px);
}

.slyvka-for-patients-page .patients-hero {
  padding-top: clamp(136px, 11vw, 156px);
  padding-bottom: clamp(72px, 7vw, 88px);
}

.slyvka-for-patients-page .problem-layout {
  gap: 40px;
}

.slyvka-for-patients-page .problem-answer {
  margin-top: 24px;
}

.slyvka-for-patients-page .includes-grid {
  gap: 14px;
}

.slyvka-for-patients-page .for-whom-list {
  gap: 14px;
}

.slyvka-for-patients-page .includes-card {
  padding: 20px 18px 18px;
  gap: 12px;
}

.slyvka-for-patients-page .for-whom-item {
  padding: 18px 20px;
}

.slyvka-for-patients-page .for-patients-booking #zapys .contact-form-wrap {
  padding: 28px 24px 22px;
}

.slyvka-for-patients-page .for-whom-booking-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-patients-page .patients-for-whom-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.slyvka-for-patients-page .patients-for-whom-column .patients-for-whom-list {
  grid-template-columns: 1fr;
  gap: 14px;
}

.slyvka-for-patients-page .patients-for-whom-column .patients-for-whom-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: clamp(18px, 2vw, 24px);
}

.slyvka-for-patients-page .patients-for-whom-column .for-whom-icon {
  margin-top: 0;
}

.slyvka-for-patients-page .patients-for-whom-column .for-whom-icon .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
}

.slyvka-for-patients-page .patients-booking-column #zapys .slyvka-booking-form-inner {
  width: 100%;
  max-width: 100%;
}

.slyvka-for-patients-page .patients-booking-column #zapys .contact-form-wrap {
  padding: 28px 24px 22px;
}

.slyvka-for-patients-page .problem-intro,
.slyvka-for-patients-page .problem-answer,
.slyvka-for-patients-page .includes-card-desc,
.slyvka-for-patients-page .patients-for-whom-column .for-whom-text,
.slyvka-for-patients-page .patients-booking-column #zapys .contact-form-subtitle {
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  line-height: 1.6;
}

.slyvka-for-patients-page #includes .includes-card .includes-card-desc {
  font-size: clamp(13px, 0.95vw, 14px);
  line-height: 1.5;
}

.slyvka-for-patients-page .eyebrow-row {
  margin-bottom: 18px;
}

.slyvka-for-patients-page.patients-reveal-enabled .patients-reveal {
  opacity: 0;
  transition:
    opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.slyvka-for-patients-page.patients-reveal-enabled .patients-reveal--from-right {
  transform: translateX(48px);
}

.slyvka-for-patients-page.patients-reveal-enabled .patients-reveal--context {
  transform: translateX(72px);
  transition:
    opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.12s;
}

.slyvka-for-patients-page.patients-reveal-enabled .patients-reveal--from-left {
  transform: translateX(-48px);
}

.slyvka-for-patients-page.patients-reveal-enabled .patients-reveal--from-bottom {
  transform: translateY(48px);
}

.slyvka-for-patients-page.patients-reveal-enabled .patients-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.slyvka-for-patients-page.patients-reveal-enabled .patients-reveal--context.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 1025px) {
  .slyvka-for-patients-page .problem-layout {
    gap: 52px;
  }
}

@media (max-width: 1024px) {
  .slyvka-for-patients-page .problem-layout {
    gap: 32px;
  }

  .slyvka-for-patients-page .patients-for-whom-booking-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .slyvka-for-patients-page .section {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .slyvka-for-patients-page .patients-hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .slyvka-for-patients-page .patients-for-whom-booking-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .slyvka-for-patients-page .patients-booking-column #zapys .contact-form-wrap {
    padding: 24px 20px 20px;
  }

  .slyvka-for-patients-page .problem-intro,
  .slyvka-for-patients-page .problem-answer,
  .slyvka-for-patients-page .includes-card-desc,
  .slyvka-for-patients-page .patients-for-whom-column .for-whom-text,
  .slyvka-for-patients-page .patients-booking-column #zapys .contact-form-subtitle {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .slyvka-for-patients-page #includes .includes-card .includes-card-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slyvka-for-patients-page .patients-reveal,
  .slyvka-for-patients-page .patients-reveal--context {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* Calculation page heading (scoped) */
.slyvka-calculation-page .calculation-heading-section {
  position: relative;
  overflow: hidden;
  padding: clamp(124px, 11vw, 150px) 0 clamp(8px, 1.2vw, 12px);
}

.slyvka-calculation-page .calculation-heading-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.03);
  pointer-events: none;
}

.slyvka-calculation-page .calculation-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(24px, 3.2vw, 32px);
}

.slyvka-calculation-page .calculation-heading-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.slyvka-calculation-page .calculation-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.slyvka-calculation-page .calculation-title span {
  color: var(--accent);
}

.slyvka-calculation-page .calculation-content-section {
  padding-top: 0;
}

.slyvka-calculation-page .calculation-page-content {
  width: 100%;
}

.slyvka-calculation-page .calculation-content-section .ec-wrap {
  max-width: 100%;
  margin: 0;
  padding: 20px 0 140px;
}

.slyvka-calculation-page .calculation-content-section .ec-wrap .ec-header {
  max-width: 780px;
  margin: 0 0 40px;
}

.slyvka-calculation-page .ec-wrap .ec-title {
  display: none;
}

.slyvka-calculation-page .ec-wrap .ec-subtitle {
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 122, 0, 0.75);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .slyvka-calculation-page .calculation-heading-section {
    padding-top: 120px;
    padding-bottom: 10px;
  }

  .slyvka-calculation-page .calculation-title {
    font-size: clamp(1.9rem, 5.6vw, 2.6rem);
  }

  .slyvka-calculation-page .calculation-content-section .ec-wrap {
    padding-top: 18px;
  }
}

@media (max-width: 767px) {
  .slyvka-calculation-page .calculation-heading-section {
    padding-top: 112px;
    padding-bottom: 8px;
  }

  .slyvka-calculation-page .calculation-title {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.18;
  }

  .slyvka-calculation-page .calculation-content-section .ec-wrap {
    padding-top: 16px;
    padding-bottom: 120px;
  }

  .slyvka-calculation-page .ec-wrap .ec-subtitle {
    font-size: 0.95rem;
    line-height: 1.58;
  }
}

/* Calculator page booking form (CF7) */
#zapys.slyvka-booking-form-section,
.booking-form.slyvka-booking-form-section {
  background: #0a0a0a;
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 20px 24px 76px;
}

.slyvka-booking-form-inner {
  width: min(860px, 100%);
  margin-left: 0;
  margin-right: auto;
}

#zapys .contact-form-wrap {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.66));
  padding: 32px 28px 26px;
}

#zapys .contact-form-title {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--text);
}

#zapys .contact-form-subtitle {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.6;
}

#zapys .wpcf7 {
  width: 100%;
}

#zapys .wpcf7 form {
  display: block;
  margin: 0;
}

#zapys .wpcf7 form > p {
  margin: 0 0 14px;
}

#zapys .wpcf7 form > p:last-of-type {
  margin-bottom: 0;
}

#zapys .wpcf7 label {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#zapys .wpcf7 label .required {
  color: var(--accent);
}

#zapys .wpcf7 label:has(input[aria-required="true"])::after {
  content: " *";
  color: var(--accent);
}

#zapys .wpcf7 input[type="text"],
#zapys .wpcf7 input[type="tel"] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  min-height: 46px;
  padding: 8px 0 10px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#zapys .wpcf7 input[type="text"]::placeholder,
#zapys .wpcf7 input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#zapys .wpcf7 input[type="text"]:focus,
#zapys .wpcf7 input[type="tel"]:focus {
  border-bottom-color: rgba(255, 122, 0, 0.72);
  color: var(--text);
}

#zapys .wpcf7 input[type="submit"],
#zapys .wpcf7 .wpcf7-submit,
#zapys .wpcf7 button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--bg);
  min-height: 50px;
  padding: 12px 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.22s ease;
}

#zapys .wpcf7 input[type="submit"]:hover,
#zapys .wpcf7 .wpcf7-submit:hover,
#zapys .wpcf7 button:hover {
  background: #ffffff;
}

#zapys .wpcf7 form .wpcf7-spinner {
  margin: 10px 0 0;
}

#zapys .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ffb26b;
  font-size: 0.76rem;
  line-height: 1.45;
}

#zapys .wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 9px 11px;
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 122, 0, 0.08);
  font-size: 0.8rem;
  line-height: 1.45;
}

#zapys .form-trust-note {
  margin: 16px 0 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 640px) {
  #zapys.slyvka-booking-form-section,
  .booking-form.slyvka-booking-form-section {
    padding: 16px 16px 66px;
  }

  .slyvka-booking-form-inner {
    width: 100%;
    padding: 0;
  }

  #zapys .contact-form-wrap {
    padding: 24px 20px 20px;
  }

  #zapys .contact-form-title {
    font-size: 1.12rem;
  }

  #zapys .contact-form-subtitle {
    margin-bottom: 18px;
  }

  #zapys .wpcf7 input[type="submit"],
  #zapys .wpcf7 .wpcf7-submit,
  #zapys .wpcf7 button {
    min-height: 48px;
    font-size: 10px;
  }
}

/* For Media & Events page */
.slyvka-for-media-events-page .media-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.slyvka-for-media-events-page .media-hero::before {
  content: "";
  position: absolute;
  left: -160px;
  top: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.03);
  filter: blur(120px);
  pointer-events: none;
}

.slyvka-for-media-events-page .media-hero-content {
  position: relative;
  z-index: 1;
}

.slyvka-for-media-events-page .media-hero-title {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.slyvka-for-media-events-page .media-hero-title span {
  color: var(--accent);
}

.slyvka-for-media-events-page .media-hero-copy {
  margin: 0 0 32px;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  border-left: 2px solid rgba(255, 122, 0, 0.28);
  padding-left: 16px;
}

.slyvka-for-media-events-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 1;
  transform: none;
  transition: none;
  animation: none;
}

.slyvka-for-media-events-page .media-hero .hero-actions .button.button-primary {
  width: 180px;
  max-width: 180px;
  height: 54px;
  min-height: 54px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ff7a00;
  color: #050505;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: none;
  transition-delay: 0s;
  animation-delay: 0s;
  animation: none;
}

.slyvka-for-media-events-page .media-hero .hero-actions .button.button-primary:hover,
.slyvka-for-media-events-page .media-hero .hero-actions .button.button-primary:focus,
.slyvka-for-media-events-page .media-hero .hero-actions .button.button-primary:focus-visible,
.slyvka-for-media-events-page .media-hero .hero-actions .button.button-primary:active {
  transform: none;
  transition: none;
  animation: none;
}

.slyvka-for-media-events-page.media-events-reveal-enabled .media-events-reveal {
  opacity: 0;
  transition:
    opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.slyvka-for-media-events-page.media-events-reveal-enabled .media-events-reveal--from-right {
  transform: translateX(48px);
}

.slyvka-for-media-events-page.media-events-reveal-enabled .media-events-reveal--from-left {
  transform: translateX(-48px);
}

.slyvka-for-media-events-page.media-events-reveal-enabled .media-events-reveal--from-bottom {
  transform: translateY(48px);
}

.slyvka-for-media-events-page.media-events-reveal-enabled .media-events-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.slyvka-for-media-events-page .topics-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-media-events-page .topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.slyvka-for-media-events-page .topic-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  padding: 24px 22px 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.slyvka-for-media-events-page .topic-card:hover {
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-2px);
}

.slyvka-for-media-events-page .topic-card::before {
  content: attr(data-num);
  position: absolute;
  right: 14px;
  bottom: -10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(100px, 10vw, 160px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.slyvka-for-media-events-page .topic-card > * {
  position: relative;
  z-index: 1;
}

.slyvka-for-media-events-page .topic-card-icon {
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 2px;
}

.slyvka-for-media-events-page .topic-card-icon .material-symbols-outlined {
  font-size: 24px;
}

.slyvka-for-media-events-page .topic-card-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
}

.slyvka-for-media-events-page .topic-card-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.slyvka-for-media-events-page .formats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.slyvka-for-media-events-page .format-item {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.82));
  padding: 20px 16px 18px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.slyvka-for-media-events-page .format-item:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-2px);
}

.slyvka-for-media-events-page .format-icon {
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 14px;
}

.slyvka-for-media-events-page .format-icon .material-symbols-outlined {
  font-size: 28px;
}

.slyvka-for-media-events-page .format-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.35;
}

.slyvka-for-media-events-page .media-events-why-invite-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-media-events-page .media-events-why-invite-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.slyvka-for-media-events-page .media-events-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.slyvka-for-media-events-page .media-events-why-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  transition: border-color 0.3s ease;
}

.slyvka-for-media-events-page .media-events-why-item:hover {
  border-color: rgba(255, 122, 0, 0.4);
}

.slyvka-for-media-events-page .media-events-why-item .material-symbols-outlined {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.slyvka-for-media-events-page .media-events-why-item p {
  margin: 0;
}

.slyvka-for-media-events-page .media-events-invite-column .invite-form-card {
  width: 100%;
  max-width: 100%;
}

.slyvka-for-media-events-page .media-events-invite-title {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.slyvka-for-media-events-page .media-events-invite-copy {
  margin: 0 0 18px;
  display: block;
  margin-left: 0;
  padding-left: 0;
  color: var(--text-muted);
}

.slyvka-for-media-events-page .media-events-invite-copy::before {
  content: none;
  display: none;
}

.slyvka-for-media-events-page .topic-card-desc,
.slyvka-for-media-events-page .format-title,
.slyvka-for-media-events-page .media-events-why-item p,
.slyvka-for-media-events-page .media-events-invite-copy,
.slyvka-for-media-events-page .invite-form-subtitle {
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  line-height: 1.6;
}

.slyvka-for-media-events-page .why-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-media-events-page .why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.slyvka-for-media-events-page .why-text-block {
  max-width: 52ch;
}

.slyvka-for-media-events-page .why-heading {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.slyvka-for-media-events-page .why-paragraph {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.slyvka-for-media-events-page .why-paragraph:last-child {
  margin-bottom: 0;
}

.slyvka-for-media-events-page .why-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.slyvka-for-media-events-page .why-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  transition: border-color 0.3s ease;
}

.slyvka-for-media-events-page .why-point:hover {
  border-color: rgba(255, 122, 0, 0.4);
}

.slyvka-for-media-events-page .why-point-icon {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.55;
  margin-top: 1px;
}

.slyvka-for-media-events-page .why-point-icon .material-symbols-outlined {
  font-size: 20px;
}

.slyvka-for-media-events-page .why-point-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.slyvka-for-media-events-page .for-media-events-booking-section {
  width: 100%;
}

.slyvka-for-media-events-page .for-media-events-booking-section #zapys.slyvka-booking-form-section,
.slyvka-for-media-events-page .for-media-events-booking-section .booking-form.slyvka-booking-form-section {
  width: min(560px, 100%);
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background: transparent;
}

.slyvka-for-media-events-page .for-media-events-booking-section #zapys .slyvka-booking-form-inner,
.slyvka-for-media-events-page .for-media-events-booking-section .booking-form .slyvka-booking-form-inner {
  width: 100%;
  margin: 0;
}

.slyvka-for-media-events-page .for-media-events-invite-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-media-events-page .invite-form-card {
  width: min(560px, 100%);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.66));
  padding: 28px 24px 22px;
}

.slyvka-for-media-events-page .invite-form-title {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--text);
}

.slyvka-for-media-events-page .invite-form-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.6;
}

.slyvka-for-media-events-page .invite-form,
.slyvka-for-media-events-page .invite-form .wpcf7,
.slyvka-for-media-events-page .invite-form .wpcf7 form {
  width: 100%;
}

.slyvka-for-media-events-page .invite-form .wpcf7 form {
  margin: 0;
}

.slyvka-for-media-events-page .invite-form .slyvka-form-row {
  margin: 0 0 14px;
}

.slyvka-for-media-events-page .invite-form .slyvka-field-label {
  display: block;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slyvka-for-media-events-page .invite-form .slyvka-field-label .required {
  color: var(--accent);
}

.slyvka-for-media-events-page .invite-form input[type="text"],
.slyvka-for-media-events-page .invite-form input[type="tel"] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  min-height: 46px;
  padding: 8px 0 10px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.slyvka-for-media-events-page .invite-form input[type="text"]::placeholder,
.slyvka-for-media-events-page .invite-form input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.slyvka-for-media-events-page .invite-form input[type="text"]:focus,
.slyvka-for-media-events-page .invite-form input[type="tel"]:focus {
  border-bottom-color: rgba(255, 122, 0, 0.72);
  color: var(--text);
}

.slyvka-for-media-events-page .invite-form .slyvka-form-submit {
  margin-top: 8px;
}

.slyvka-for-media-events-page .invite-form input[type="submit"],
.slyvka-for-media-events-page .invite-form .wpcf7-submit,
.slyvka-for-media-events-page .invite-form button {
  width: 180px;
  max-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  background: #ff7a00;
  color: #050505;
  height: 54px;
  min-height: 54px;
  padding: 14px 24px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: none;
  animation: none;
}

.slyvka-for-media-events-page .invite-form input[type="submit"]:hover,
.slyvka-for-media-events-page .invite-form .wpcf7-submit:hover,
.slyvka-for-media-events-page .invite-form button:hover {
  background: #ffffff;
  transform: none;
  transition: none;
  animation: none;
}

.slyvka-for-media-events-page .invite-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ffb26b;
  font-size: 0.76rem;
  line-height: 1.45;
}

.slyvka-for-media-events-page .invite-form .wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 9px 11px;
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 122, 0, 0.08);
  font-size: 0.8rem;
  line-height: 1.45;
}

.slyvka-for-media-events-page .invite-form-card .form-trust-note {
  margin: 12px 0 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.55;
  text-align: center;
}

.slyvka-for-media-events-page .slyvka-invite-form-missing {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.5;
}

.slyvka-for-media-events-page .credibility-strip {
  padding: 56px 0;
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-media-events-page .credibility-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.slyvka-for-media-events-page .credibility-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slyvka-for-media-events-page .credibility-icon {
  color: var(--accent);
  opacity: 0.38;
}

.slyvka-for-media-events-page .credibility-icon .material-symbols-outlined {
  font-size: 22px;
}

.slyvka-for-media-events-page .credibility-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.slyvka-for-media-events-page .credibility-divider {
  width: 1px;
  height: 20px;
  background: var(--interface-line);
}

.slyvka-for-media-events-page .cta {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--interface-line);
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.98), var(--bg));
  overflow: hidden;
  position: relative;
}

.slyvka-for-media-events-page .cta::after {
  content: "";
  position: absolute;
  right: -256px;
  bottom: -256px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.slyvka-for-media-events-page .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.72);
  padding: 48px 36px;
}

.slyvka-for-media-events-page .cta-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 122, 0, 0.35);
  color: rgba(255, 122, 0, 0.9);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slyvka-for-media-events-page .cta-title {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

.slyvka-for-media-events-page .cta-copy {
  margin: 0 0 26px;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.slyvka-for-media-events-page .cta-button {
  min-width: 230px;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .slyvka-for-media-events-page.media-events-reveal-enabled .media-events-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .slyvka-for-media-events-page .media-hero .hero-actions .button.button-primary,
  .slyvka-for-media-events-page .invite-form input[type="submit"],
  .slyvka-for-media-events-page .invite-form .wpcf7-submit,
  .slyvka-for-media-events-page .invite-form button {
    transition: none;
    animation: none;
  }
}

@media (min-width: 1025px) {
  .slyvka-for-media-events-page .section {
    padding-top: clamp(56px, 4.2vw, 72px);
    padding-bottom: clamp(56px, 4.2vw, 72px);
  }

  .slyvka-for-media-events-page .media-hero {
    padding-top: clamp(136px, 11vw, 156px);
    padding-bottom: clamp(72px, 7vw, 88px);
  }
}

@media (max-width: 1024px) {
  .slyvka-for-media-events-page .media-hero {
    padding: 128px 0 68px;
  }

  .slyvka-for-media-events-page .topics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slyvka-for-media-events-page .topic-card {
    min-height: 0;
    padding: 22px 18px 18px;
  }

  .slyvka-for-media-events-page .formats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slyvka-for-media-events-page .media-events-why-invite-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .slyvka-for-media-events-page .credibility-inner {
    flex-wrap: wrap;
    gap: 24px 32px;
    justify-content: center;
  }

  .slyvka-for-media-events-page .credibility-divider {
    display: none;
  }

  .slyvka-for-media-events-page .cta-inner {
    padding: 30px 18px;
  }

  .slyvka-for-media-events-page .cta-title {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
  }
}

@media (max-width: 640px) {
  .slyvka-for-media-events-page .media-hero {
    padding: 112px 0 56px;
  }

  .slyvka-for-media-events-page .media-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .slyvka-for-media-events-page .media-hero-copy {
    font-size: 0.92rem;
  }

  .slyvka-for-media-events-page .hero-actions {
    flex-direction: column;
  }

  .slyvka-for-media-events-page .hero-actions .button {
    width: 100%;
  }

  .slyvka-for-media-events-page .topics-grid {
    grid-template-columns: 1fr;
  }

  .slyvka-for-media-events-page .formats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .slyvka-for-media-events-page .format-item {
    padding: 18px 12px 16px;
  }

  .slyvka-for-media-events-page .media-events-why-list {
    gap: 10px;
  }

  .slyvka-for-media-events-page .media-events-why-item {
    padding: 12px 14px;
  }

  .slyvka-for-media-events-page .credibility-inner {
    flex-direction: column;
    gap: 18px;
  }

  .slyvka-for-media-events-page .credibility-strip {
    padding: 40px 0;
  }

  .slyvka-for-media-events-page .cta-button {
    min-width: 0;
    width: 100%;
  }

  .slyvka-for-media-events-page .invite-form-card {
    width: 100%;
    padding: 22px 18px 18px;
  }

  .slyvka-for-media-events-page .topic-card-desc,
  .slyvka-for-media-events-page .format-title,
  .slyvka-for-media-events-page .media-events-why-item p,
  .slyvka-for-media-events-page .media-events-invite-copy,
  .slyvka-for-media-events-page .invite-form-subtitle {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .slyvka-for-media-events-page .invite-form input[type="submit"],
  .slyvka-for-media-events-page .invite-form .wpcf7-submit,
  .slyvka-for-media-events-page .invite-form button {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .slyvka-for-media-events-page .section {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .slyvka-for-media-events-page .media-hero {
    padding-top: 120px;
  }

  .slyvka-for-media-events-page .media-events-why-invite-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* For Colleagues page */
.slyvka-for-colleagues-page .colleagues-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.slyvka-for-colleagues-page .colleagues-hero::before {
  content: "";
  position: absolute;
  left: -160px;
  top: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.03);
  filter: blur(120px);
  pointer-events: none;
}

.slyvka-for-colleagues-page .colleagues-hero-content {
  position: relative;
  z-index: 1;
}

.slyvka-for-colleagues-page .colleagues-hero-title {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.slyvka-for-colleagues-page .colleagues-hero-title span {
  color: var(--accent);
}

.slyvka-for-colleagues-page .colleagues-hero-copy {
  margin: 0 0 32px;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  border-left: 2px solid rgba(255, 122, 0, 0.28);
  padding-left: 16px;
}

.slyvka-for-colleagues-page .hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 1;
  transform: none;
  transition: none;
  animation: none;
}

.slyvka-for-colleagues-page .hero-actions .button {
  width: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  min-height: 55px;
  font-size: 13px;
  white-space: nowrap;
}

.slyvka-for-colleagues-page .hero-actions .button .material-symbols-outlined {
  font-size: 19px;
}

.slyvka-for-colleagues-page .hero-actions .button {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: 0s;
  animation-delay: 0s;
  animation: none;
}

.slyvka-for-colleagues-page .hero-actions .button:hover,
.slyvka-for-colleagues-page .hero-actions .button:focus,
.slyvka-for-colleagues-page .hero-actions .button:focus-visible,
.slyvka-for-colleagues-page .hero-actions .button:active {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: 0s;
  animation-delay: 0s;
  animation: none;
}

.slyvka-for-colleagues-page .section {
  padding-top: clamp(56px, 4.2vw, 72px);
  padding-bottom: clamp(56px, 4.2vw, 72px);
}

.slyvka-for-colleagues-page .colleagues-hero {
  padding-top: clamp(136px, 11vw, 156px);
  padding-bottom: clamp(72px, 7vw, 88px);
}

.slyvka-for-colleagues-page.colleagues-reveal-enabled .colleagues-reveal {
  opacity: 0;
  transition:
    opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.slyvka-for-colleagues-page.colleagues-reveal-enabled .colleagues-reveal--from-right {
  transform: translateX(48px);
}

.slyvka-for-colleagues-page.colleagues-reveal-enabled .colleagues-reveal--from-left {
  transform: translateX(-48px);
}

.slyvka-for-colleagues-page.colleagues-reveal-enabled .colleagues-reveal--from-bottom {
  transform: translateY(48px);
}

.slyvka-for-colleagues-page.colleagues-reveal-enabled .colleagues-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.slyvka-for-colleagues-page .directions-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-colleagues-page .directions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.slyvka-for-colleagues-page .direction-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  padding: 24px 22px 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.slyvka-for-colleagues-page .direction-card:hover {
  border-color: rgba(255, 122, 0, 0.55);
  transform: translateY(-2px);
}

.slyvka-for-colleagues-page .direction-card::before {
  content: attr(data-num);
  position: absolute;
  right: 14px;
  bottom: -10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(120px, 12vw, 180px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.slyvka-for-colleagues-page .direction-card > * {
  position: relative;
  z-index: 1;
}

.slyvka-for-colleagues-page .direction-card-index {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  color: var(--accent);
  opacity: 0.62;
  letter-spacing: 0.14em;
}

.slyvka-for-colleagues-page .direction-card-title {
  margin: 2px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.28;
}

.slyvka-for-colleagues-page .direction-card-copy {
  margin: 0 0 auto;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.slyvka-for-colleagues-page .direction-card-copy-intro {
  margin: 0 0 10px;
}

.slyvka-for-colleagues-page .direction-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--interface-line);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 122, 0, 0.88);
  transition: color 0.22s ease, transform 0.22s ease;
  gap: 6px;
}

.slyvka-for-colleagues-page .direction-card-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.slyvka-for-colleagues-page .direction-card-link .material-symbols-outlined {
  font-size: 16px;
}

.slyvka-for-colleagues-page .lab-section-intro {
  margin: 0 0 36px;
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.slyvka-for-colleagues-page .lab-points {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.slyvka-for-colleagues-page .lab-point {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.82));
  padding: 20px 16px 18px;
  transition: border-color 0.3s ease;
}

.slyvka-for-colleagues-page .lab-point:hover {
  border-color: rgba(255, 122, 0, 0.4);
}

.slyvka-for-colleagues-page .lab-point-icon {
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 12px;
}

.slyvka-for-colleagues-page .lab-point-icon .material-symbols-outlined {
  font-size: 22px;
}

.slyvka-for-colleagues-page .lab-point-title {
  margin: 0 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.3;
}

.slyvka-for-colleagues-page .lab-point-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
}

.slyvka-for-colleagues-page .audience-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-colleagues-page .audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.slyvka-for-colleagues-page .audience-item {
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.62));
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.3s ease;
}

.slyvka-for-colleagues-page .audience-item:hover {
  border-color: rgba(255, 122, 0, 0.4);
}

.slyvka-for-colleagues-page .audience-icon {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.55;
  margin-top: 2px;
}

.slyvka-for-colleagues-page .audience-icon .material-symbols-outlined {
  font-size: 20px;
}

.slyvka-for-colleagues-page .audience-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.slyvka-for-colleagues-page .values-panel {
  position: relative;
  padding: 26px 0 6px;
  overflow: hidden;
}

.slyvka-for-colleagues-page .values-panel::before {
  content: "\201C";
  position: absolute;
  top: -58px;
  left: 8px;
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 280px;
  line-height: 1;
  color: rgba(212, 96, 26, 0.06);
  pointer-events: none;
  z-index: 0;
}

.slyvka-for-colleagues-page .values-quote-wrap {
  position: relative;
  z-index: 1;
  border-left: 2px solid var(--accent);
  padding-left: clamp(24px, 4vw, 64px);
}

.slyvka-for-colleagues-page .values-text {
  margin: 0;
  max-width: 58ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.14rem, 1.62vw, 1.45rem);
  font-weight: 400;
  line-height: 1.6;
}

.slyvka-for-colleagues-page .values-text .accent {
  color: var(--accent);
}

.slyvka-for-colleagues-page .values-quote-wrap::after {
  content: "\2014  \41C\438\445\430\439\43B\43E \421\43B\438\432\43A\430";
  display: block;
  margin-top: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.slyvka-for-colleagues-page .for-colleagues-booking-section {
  width: 100%;
}

.slyvka-for-colleagues-page .for-colleagues-booking-section #zapys.slyvka-booking-form-section,
.slyvka-for-colleagues-page .for-colleagues-booking-section .booking-form.slyvka-booking-form-section {
  width: min(560px, 100%);
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background: transparent;
}

.slyvka-for-colleagues-page .for-colleagues-booking-section #zapys .slyvka-booking-form-inner,
.slyvka-for-colleagues-page .for-colleagues-booking-section .booking-form .slyvka-booking-form-inner {
  width: 100%;
  margin: 0;
}

.slyvka-for-colleagues-page .for-colleagues-collaboration-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-colleagues-page .collaboration-form-card {
  width: min(560px, 100%);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.66));
  padding: 28px 24px 22px;
}

.slyvka-for-colleagues-page .collaboration-form-title {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: var(--text);
}

.slyvka-for-colleagues-page .collaboration-form-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.6;
}

.slyvka-for-colleagues-page .collaboration-form,
.slyvka-for-colleagues-page .collaboration-form .wpcf7,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 form {
  width: 100%;
}

.slyvka-for-colleagues-page .collaboration-form .wpcf7 form {
  margin: 0;
}

.slyvka-for-colleagues-page .collaboration-form .slyvka-form-row {
  margin: 0 0 14px;
}

.slyvka-for-colleagues-page .collaboration-form .slyvka-field-label {
  display: block;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slyvka-for-colleagues-page .collaboration-form .slyvka-field-label .required {
  color: var(--accent);
}

.slyvka-for-colleagues-page .collaboration-form input[type="text"],
.slyvka-for-colleagues-page .collaboration-form input[type="tel"] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  min-height: 46px;
  padding: 8px 0 10px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.slyvka-for-colleagues-page .collaboration-form input[type="text"]::placeholder,
.slyvka-for-colleagues-page .collaboration-form input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.slyvka-for-colleagues-page .collaboration-form input[type="text"]:focus,
.slyvka-for-colleagues-page .collaboration-form input[type="tel"]:focus {
  border-bottom-color: rgba(255, 122, 0, 0.72);
  color: var(--text);
}

.slyvka-for-colleagues-page .collaboration-form .slyvka-form-submit {
  margin-top: 8px;
}

.slyvka-for-colleagues-page .collaboration-form input[type="submit"],
.slyvka-for-colleagues-page .collaboration-form .wpcf7-submit,
.slyvka-for-colleagues-page .collaboration-form button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--bg);
  min-height: 50px;
  padding: 12px 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.22s ease;
}

.slyvka-for-colleagues-page .collaboration-form input[type="submit"]:hover,
.slyvka-for-colleagues-page .collaboration-form .wpcf7-submit:hover,
.slyvka-for-colleagues-page .collaboration-form button:hover {
  background: #ffffff;
}

.slyvka-for-colleagues-page .collaboration-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ffb26b;
  font-size: 0.76rem;
  line-height: 1.45;
}

.slyvka-for-colleagues-page .collaboration-form .wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 9px 11px;
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 122, 0, 0.08);
  font-size: 0.8rem;
  line-height: 1.45;
}

.slyvka-for-colleagues-page .collaboration-form-card .form-trust-note {
  margin: 12px 0 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.55;
  text-align: center;
}

.slyvka-for-colleagues-page .slyvka-collaboration-form-missing {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.5;
}

.slyvka-for-colleagues-page .colleagues-values-collaboration-section {
  border-block: 1px solid var(--interface-line);
}

.slyvka-for-colleagues-page .colleagues-values-collaboration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.slyvka-for-colleagues-page .colleagues-values-quote-panel {
  position: relative;
  border: 1px solid var(--border);
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.82));
  overflow: hidden;
}

.slyvka-for-colleagues-page .colleagues-values-quote-panel::before {
  content: "“";
  position: absolute;
  top: -58px;
  left: 8px;
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 260px;
  line-height: 1;
  color: rgba(212, 96, 26, 0.08);
  pointer-events: none;
  z-index: 0;
}

.slyvka-for-colleagues-page .colleagues-values-quote-wrap {
  position: relative;
  z-index: 1;
  border-left: 2px solid var(--accent);
  padding-left: clamp(20px, 3.4vw, 42px);
}

.slyvka-for-colleagues-page .colleagues-values-quote {
  margin: 0;
}

.slyvka-for-colleagues-page .colleagues-values-quote p {
  margin: 0;
  font-size: clamp(1.08rem, 1.3vw, 1.34rem);
  line-height: 1.58;
  color: var(--text-muted);
}

.slyvka-for-colleagues-page .colleagues-values-quote p + p {
  margin-top: 0.72em;
}

.slyvka-for-colleagues-page .colleagues-quote-highlight {
  color: var(--text);
}

.slyvka-for-colleagues-page .colleagues-collaboration-column .collaboration-form-card {
  width: 100%;
  max-width: 100%;
  padding: 28px 24px 22px;
}

.slyvka-for-colleagues-page .colleagues-collaboration-title {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.slyvka-for-colleagues-page .colleagues-collaboration-copy {
  margin: 0 0 18px;
  display: block;
  color: var(--text-muted);
}

.slyvka-for-colleagues-page .colleagues-collaboration-copy::before {
  content: none;
  display: none;
}

.slyvka-for-colleagues-page .direction-card-copy,
.slyvka-for-colleagues-page .lab-section-intro,
.slyvka-for-colleagues-page .lab-point-desc,
.slyvka-for-colleagues-page .audience-text,
.slyvka-for-colleagues-page .colleagues-values-item p,
.slyvka-for-colleagues-page .colleagues-collaboration-copy,
.slyvka-for-colleagues-page .collaboration-form-subtitle {
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  line-height: 1.6;
}

.slyvka-for-colleagues-page .direction-card-copy,
.slyvka-for-colleagues-page .lab-point-desc {
  font-size: clamp(0.9375rem, 0.98vw, 1rem);
  line-height: 1.6;
}

.slyvka-for-colleagues-page #lab .lab-point .lab-point-desc {
  font-size: clamp(12px, 0.85vw, 13px);
  line-height: 1.5;
}

.slyvka-for-colleagues-page .cta {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--interface-line);
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.98), var(--bg));
  overflow: hidden;
  position: relative;
}

.slyvka-for-colleagues-page .cta::after {
  content: "";
  position: absolute;
  right: -256px;
  bottom: -256px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.slyvka-for-colleagues-page .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.72);
  padding: 48px 36px;
}

.slyvka-for-colleagues-page .cta-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 122, 0, 0.35);
  color: rgba(255, 122, 0, 0.9);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slyvka-for-colleagues-page .cta-title {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

.slyvka-for-colleagues-page .cta-copy {
  margin: 0 0 26px;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.slyvka-for-colleagues-page .cta-button {
  min-width: 230px;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .slyvka-for-colleagues-page.colleagues-reveal-enabled .colleagues-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .slyvka-for-colleagues-page .hero-actions .button {
    transition: none;
    animation: none;
  }
}

@media (min-width: 1025px) {
  .slyvka-for-colleagues-page .section {
    padding-top: clamp(56px, 4.2vw, 72px);
    padding-bottom: clamp(56px, 4.2vw, 72px);
  }

  .slyvka-for-colleagues-page .colleagues-hero {
    padding-top: clamp(136px, 11vw, 156px);
    padding-bottom: clamp(72px, 7vw, 88px);
  }

  .slyvka-for-colleagues-page .hero-actions {
    flex-wrap: nowrap;
    align-items: center;
  }

  .slyvka-for-colleagues-page .hero-actions .button {
    flex: 0 0 auto;
    width: auto;
    max-width: max-content;
  }
}

@media (max-width: 1024px) {
  .slyvka-for-colleagues-page .colleagues-hero {
    padding: 128px 0 68px;
  }

  .slyvka-for-colleagues-page .colleagues-values-collaboration-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .slyvka-for-colleagues-page .directions-grid {
    grid-template-columns: 1fr;
  }

  .slyvka-for-colleagues-page .direction-card {
    min-height: 0;
    padding: 22px 18px 18px;
  }

  .slyvka-for-colleagues-page .lab-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slyvka-for-colleagues-page .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slyvka-for-colleagues-page .values-panel::before {
    font-size: 200px;
    top: -36px;
  }

  .slyvka-for-colleagues-page .values-quote-wrap {
    padding-left: 20px;
  }

  .slyvka-for-colleagues-page .cta-inner {
    padding: 30px 18px;
  }

  .slyvka-for-colleagues-page .cta-title {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
  }
}

@media (max-width: 640px) {
  .slyvka-for-colleagues-page .colleagues-hero {
    padding: 112px 0 56px;
  }

  .slyvka-for-colleagues-page .colleagues-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .slyvka-for-colleagues-page .colleagues-hero-copy {
    font-size: 0.92rem;
  }

  .slyvka-for-colleagues-page .lab-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .slyvka-for-colleagues-page .audience-list {
    grid-template-columns: 1fr;
  }

  .slyvka-for-colleagues-page .audience-item {
    padding: 18px;
  }

  .slyvka-for-colleagues-page .cta-button {
    min-width: 0;
    width: 100%;
  }

  .slyvka-for-colleagues-page .collaboration-form-card {
    width: 100%;
    padding: 22px 18px 18px;
  }

  .slyvka-for-colleagues-page .colleagues-collaboration-column .collaboration-form-card {
    padding: 22px 18px 18px;
  }

  .slyvka-for-colleagues-page .direction-card-copy,
  .slyvka-for-colleagues-page .lab-section-intro,
  .slyvka-for-colleagues-page .lab-point-desc,
  .slyvka-for-colleagues-page .audience-text,
  .slyvka-for-colleagues-page .colleagues-values-item p,
  .slyvka-for-colleagues-page .colleagues-collaboration-copy,
  .slyvka-for-colleagues-page .collaboration-form-subtitle {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .slyvka-for-colleagues-page .direction-card-copy,
  .slyvka-for-colleagues-page .lab-point-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .slyvka-for-colleagues-page #lab .lab-point .lab-point-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .slyvka-for-colleagues-page .hero-actions .button {
    min-height: 50px;
    padding: 11px 19px;
    font-size: 13px;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .slyvka-for-colleagues-page .section {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .slyvka-for-colleagues-page .colleagues-hero {
    padding-top: 120px;
  }

  .slyvka-for-colleagues-page .colleagues-values-collaboration-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body.home .slyvka-home-page .hero .hero-content,
  body.front-page .slyvka-home-page .hero .hero-content {
    left: 20px;
    right: 20px;
    bottom: 56px;
    transform: none;
    width: auto;
    max-width: 352px;
  }
}

/* Scoped CF7 cleanup for landing forms */
.slyvka-for-patients-page #zapys .wpcf7 .hidden-fields-container,
.slyvka-for-patients-page #zapys .wpcf7 .wpcf7-hidden,
.slyvka-for-patients-page #zapys .wpcf7 input[type="hidden"],
.slyvka-for-colleagues-page .collaboration-form .wpcf7 .hidden-fields-container,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 .wpcf7-hidden,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 input[type="hidden"],
.slyvka-for-media-events-page .invite-form .wpcf7 .hidden-fields-container,
.slyvka-for-media-events-page .invite-form .wpcf7 .wpcf7-hidden,
.slyvka-for-media-events-page .invite-form .wpcf7 input[type="hidden"] {
  display: none !important;
}

.slyvka-for-patients-page #zapys .wpcf7 .screen-reader-response,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 .screen-reader-response,
.slyvka-for-media-events-page .invite-form .wpcf7 .screen-reader-response {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.slyvka-for-patients-page #zapys .wpcf7 form .wpcf7-response-output:empty,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 form .wpcf7-response-output:empty,
.slyvka-for-media-events-page .invite-form .wpcf7 form .wpcf7-response-output:empty {
  display: none !important;
}

.slyvka-for-patients-page #zapys .wpcf7-not-valid-tip,
.slyvka-for-colleagues-page .collaboration-form .wpcf7-not-valid-tip,
.slyvka-for-media-events-page .invite-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  color: rgba(255, 122, 0, 0.95);
  font-size: 12px;
  line-height: 1.4;
}

.slyvka-for-patients-page #zapys .wpcf7 form.invalid .wpcf7-response-output,
.slyvka-for-patients-page #zapys .wpcf7 form.unaccepted .wpcf7-response-output,
.slyvka-for-patients-page #zapys .wpcf7 form.payment-required .wpcf7-response-output,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 form.invalid .wpcf7-response-output,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 form.unaccepted .wpcf7-response-output,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 form.payment-required .wpcf7-response-output,
.slyvka-for-media-events-page .invite-form .wpcf7 form.invalid .wpcf7-response-output,
.slyvka-for-media-events-page .invite-form .wpcf7 form.unaccepted .wpcf7-response-output,
.slyvka-for-media-events-page .invite-form .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 122, 0, 0.45);
  background: rgba(255, 122, 0, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
}

.slyvka-for-patients-page #zapys .wpcf7 form.sent .wpcf7-response-output,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 form.sent .wpcf7-response-output,
.slyvka-for-media-events-page .invite-form .wpcf7 form.sent .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(90, 220, 140, 0.45);
  background: rgba(90, 220, 140, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
}

.slyvka-for-patients-page #zapys .wpcf7 form .wpcf7-response-output ul,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 form .wpcf7-response-output ul,
.slyvka-for-media-events-page .invite-form .wpcf7 form .wpcf7-response-output ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.slyvka-for-patients-page #zapys .wpcf7 form .wpcf7-response-output li,
.slyvka-for-colleagues-page .collaboration-form .wpcf7 form .wpcf7-response-output li,
.slyvka-for-media-events-page .invite-form .wpcf7 form .wpcf7-response-output li {
  margin: 4px 0;
}
