/* ============================================================
   MARCELL NYERS — Personal Brand Website
   Design: Premium dark/light, Manrope + Inter, Amber accent
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --bg-darkest:   #07090F;
  --bg-dark:      #0D1120;
  --bg-dark-2:    #131829;
  --bg-card:      #1A2035;
  --bg-card-2:    #202840;
  --bg-light:     #FFFFFF;
  --bg-light-2:   #F6F7F9;
  --bg-light-3:   #EDEEF2;

  --accent:       #E8A520;
  --accent-dark:  #C8901A;
  --accent-bg:    rgba(232,165,32,0.12);
  --accent-border:rgba(232,165,32,0.30);

  --text-white:   #FFFFFF;
  --text-faint:   rgba(255,255,255,0.55);
  --text-muted:   rgba(255,255,255,0.35);
  --text-dark:    #0D1120;
  --text-mid:     #374151;
  --text-light:   #6B7280;

  --border-dark:  rgba(255,255,255,0.07);
  --border-light: #E5E7EB;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.10);
  --shadow:    0 6px 32px rgba(0,0,0,0.16);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.24);

  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --dur:  0.28s;

  --max-w: 1200px;
  --section-pad: 100px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea { font: inherit; }

/* === BASE TYPOGRAPHY === */
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-darkest);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section--tight { padding: 64px 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
  white-space: normal;
  text-align: center;
}

.btn--accent {
  background: var(--accent);
  color: var(--bg-darkest);
}
.btn--accent:hover {
  background: #F0B030;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,165,32,0.35);
}

.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--text-white);
}
.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.btn--outline-dark {
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
}
.btn--outline-dark:hover {
  border-color: var(--text-dark);
  background: var(--bg-light-2);
}

.btn--lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.badge__dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(7,9,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: var(--text-white);
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav__links a {
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--text-white); background: rgba(255,255,255,0.06); }

.nav__cta { margin-left: 8px; white-space: nowrap; flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-darkest);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--text-white);
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 24px;
}
.nav__mobile .btn { margin-top: 16px; font-size: 16px; padding: 16px 40px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg-dark);
  padding: 136px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,165,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero__content { }

.hero__badge { margin-bottom: 24px; }

.hero__title {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 24px;
}
.hero__title .accent { color: var(--accent); }
.hero__title .line { display: block; }

.hero__what {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin: 4px 0 16px;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-faint);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero__symptoms {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-faint);
  max-width: 540px;
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 2px solid rgba(232, 165, 32, 0.5);
}
.hero__symptoms b { color: var(--text-white); font-weight: 700; }

.hero__usp-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 165, 32, 0.35);
  margin: 0;
}
.hero__usp-link:hover { border-bottom-color: var(--accent); }

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin: 28px 0 18px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}
.hero__stat {}
.hero__stat-number {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.hero__stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
  white-space: nowrap;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Hero image placeholder */
.hero__visual {
  position: relative;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
}
.hero__photo-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 16px;
  background: rgba(232,165,32,0.08);
  border: 1px dashed var(--accent-border);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__photo-icon {
  width: 64px; height: 64px;
  background: var(--bg-card-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero__photo-icon svg { opacity: 0.4; }

/* Experience tag floating on photo */
.hero__tag {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--bg-darkest);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
}
.hero__tag-number {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
}
.hero__tag-label {
  font-size: 12px;
  color: var(--text-faint);
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos {
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}

.logos__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}

.logos__marquee {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.logos__row {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logos__track {
  display: flex;
  width: max-content;
  animation: logos-scroll 34s linear infinite;
}
.logos__row--rev .logos__track {
  animation-name: logos-scroll-rev;
  animation-duration: 38s;
}
.logos__row:hover .logos__track {
  animation-play-state: paused;
}

.logos__set {
  display: flex;
  align-items: center;
}

.logo-item {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.logo-item:hover { color: var(--text-dark); }
.logo-item::after {
  content: '•';
  color: var(--accent);
  margin: 0 32px;
}

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes logos-scroll-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .logos__track { animation: none; flex-wrap: wrap; }
  .logos__set[aria-hidden="true"] { display: none; }
  .logos__row { overflow: visible; -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
}

.section__title--dark {
  color: var(--text-dark);
}

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

.problem__left {}

.problem__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.problem__insight {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--accent-bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.problem__insight p {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  font-style: italic;
}

.problem__right {}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.problem__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}

.problem__item-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem__item-icon svg { color: var(--accent); }

.problem__item-title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.problem__item-text {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ============================================================
   METRICS
   ============================================================ */
.metrics {
  background: var(--bg-darkest);
  padding: 80px 0;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.metric-card {
  background: var(--bg-dark);
  padding: 48px 40px;
  text-align: center;
}

.metric-card__number {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.metric-card__context {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.6;
}

.metric-card__source {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--bg-light);
}

.services__header {
  max-width: 640px;
  margin-bottom: 56px;
}

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

.service-card {
  padding: 32px 28px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card:hover .service-card__icon { background: var(--accent); }
.service-card:hover .service-card__icon svg { color: var(--bg-darkest); }

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #F0F2F5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--dur) var(--ease);
}
.service-card__icon svg { color: var(--text-dark); transition: color var(--dur) var(--ease); }

.service-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card__outcome {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: -4px 0 10px;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur) var(--ease);
}
.service-card:hover .service-card__link { gap: 10px; }

.services__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   HOW I WORK
   ============================================================ */
.how {
  background: var(--bg-dark-2);
  color: var(--text-white);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(33% + 20px);
  right: calc(33% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent, var(--accent));
  opacity: 0.3;
}

.how-step {}

.how-step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 28px;
}

.how-step__title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.how-step__sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.how-step__text {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.7;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases {
  background: var(--bg-light-2);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.case-card__visual {
  height: 200px;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.case-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7,9,15,0.5));
}

.case-card__visual-result {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
}
.case-card__visual-result strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: var(--accent);
}
.case-card__visual-result span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.case-card__visual-bars {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: .22;
}
.case-card__visual-bars i { flex: 1; background: var(--accent); border-radius: 4px 4px 0 0; }
.case-card__visual-bars i:nth-child(1) { height: 20%; }
.case-card__visual-bars i:nth-child(2) { height: 34%; }
.case-card__visual-bars i:nth-child(3) { height: 48%; }
.case-card__visual-bars i:nth-child(4) { height: 66%; }
.case-card__visual-bars i:nth-child(5) { height: 88%; }

.case-card__visual-name {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.02em;
}

.case-card__body { padding: 28px; }

.case-card__client {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.case-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.case-card__metrics {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.case-metric {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-dark);
}
.case-metric span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}

.case-card__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.case-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  padding: 32px 28px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.testi-card__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card__quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.testi-card__company {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about {
  background: var(--bg-dark);
  color: var(--text-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  overflow: hidden;
  position: relative;
}
.about__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
}
.about__photo-label {
  position: relative;
  z-index: 1;
  padding: 12px 20px;
  background: rgba(232,165,32,0.08);
  border: 1px dashed var(--accent-border);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__credentials {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__cred {
  background: var(--bg-darkest);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.about__cred-icon {
  width: 32px; height: 32px;
  background: var(--accent-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__cred-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}
.about__cred-sub {
  font-size: 11px;
  color: var(--text-faint);
}

.about__content {}
.about__content .section__eyebrow { color: var(--accent); }
.about__content .section__title { color: var(--text-white); }

.about__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.about__clients {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}
.about__clients strong {
  color: var(--text-faint);
  font-weight: 600;
}

.about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 28px;
}
.about__fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-faint);
}
.about__fact::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages {
  background: var(--bg-darkest);
  color: var(--text-white);
}

.packages__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pkg-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all var(--dur) var(--ease);
}
.pkg-card:hover {
  border-color: rgba(232,165,32,0.3);
  transform: translateY(-4px);
}

.pkg-card--featured {
  background: var(--bg-dark-2);
  border-color: var(--accent);
  transform: scale(1.02);
}
.pkg-card--featured:hover { transform: scale(1.02) translateY(-4px); }

.pkg-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-darkest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pkg-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.pkg-card__price {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
}
.pkg-card__price-sub {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.pkg-card__type {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
}

.pkg-card__firstcohort {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
  padding: 16px 18px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
}
.pkg-card__firstcohort svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.pkg-card__firstcohort-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.pkg-card__firstcohort-text {
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.55;
}

.pkg-card__addcal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: -12px 0 20px;
  padding: 0;
  background: none;
  border: none;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-faint);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.pkg-card__addcal:hover { color: var(--accent); }
.pkg-card__addcal svg { flex-shrink: 0; }

.pkg-card__desc {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pkg-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pkg-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.5;
}
.pkg-feature::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.lead-magnet {
  background: linear-gradient(135deg, #1A1400 0%, #0D0900 100%);
  border-top: 1px solid rgba(232,165,32,0.2);
  border-bottom: 1px solid rgba(232,165,32,0.2);
  padding: 80px 0;
}

.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

.lead-magnet__content {}
.lead-magnet__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}
.lead-magnet__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.lead-magnet__points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-magnet__point {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text-faint);
}
.lead-magnet__point::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.lead-magnet__form {
  background: var(--bg-card);
  border: 1px solid rgba(232,165,32,0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.lead-magnet__form-title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.lead-magnet__form-sub {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.form-input {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-white);
  font-size: 15px;
  transition: border-color var(--dur) var(--ease);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--accent); }
.form-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* === MARKETING CONSENT CHECKBOX (GDPR) === */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0;
  cursor: pointer;
  text-align: left;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-consent span { font-size: 12.5px; color: var(--text-faint); line-height: 1.5; }
.form-consent a { color: var(--text-faint); text-decoration: underline; }
.form-consent a:hover { color: var(--accent); }

.qualification-optional {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  overflow: hidden;
}
.qualification-optional summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 18px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.qualification-optional summary::-webkit-details-marker { display: none; }
.qualification-optional summary::after {
  content: '+';
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}
.qualification-optional[open] summary::after { content: '−'; }
.qualification-optional summary span {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.qualification-optional__body {
  padding: 18px;
  border-top: 1px solid var(--border-dark);
}
.qualification-optional__body > :last-child { margin-bottom: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--bg-dark);
  text-align: center;
  padding: 120px 0;
}

.final-cta__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.final-cta__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.final-cta__sub {
  font-size: 17px;
  color: var(--text-faint);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.final-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.final-cta__micro {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.final-cta__micro a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(232,165,32,0.4);
}
.final-cta__micro a:hover { border-bottom-color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}

.footer__brand {}
.footer__logo {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: var(--text-white);
  margin-bottom: 12px;
}
.footer__logo span { color: var(--accent); }
.footer__tagline {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 8px;
  transition: color var(--dur) var(--ease);
}
.footer__contact a:hover { color: var(--text-white); }

.footer__col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--text-white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.footer__legal a:hover { color: var(--text-faint); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.18s; }
.fade-up--delay-3 { transition-delay: 0.26s; }
.fade-up--delay-4 { transition-delay: 0.34s; }
.fade-up--delay-5 { transition-delay: 0.42s; }
.fade-up--delay-6 { transition-delay: 0.50s; }

/* ============================================================
   RESPONSIVE — TABLET 768px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: block; margin-top: 40px; }
  .hero__stats { gap: 18px 20px; }

  .problem__inner { grid-template-columns: 1fr; gap: 40px; }

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

  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  .how__steps::before { display: none; }

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

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

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 400px; }

  .packages__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pkg-card--featured { transform: none; }

  .lead-magnet__inner { grid-template-columns: 1fr; gap: 40px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE 640px
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-pad: 56px; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 96px 0 64px; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }

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

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

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

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

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

  .about__credentials { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 16px; }

  /* MOBILE-UX-AUDIT */

  /* iOS — prevent input zoom (inputs <16px trigger auto-zoom) */
  .form-input { font-size: 16px; }

  /* Hero CTAs: stack vertically, full-width */
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__cta-note { text-align: center; font-size: 12px; }

  /* Hero headline: reduce minimum for cleaner single-column layout */
  .hero__title { font-size: 30px; line-height: 1.12; }
  .hero__sub { font-size: 15px; }

  /* Hero photo: portrait ratio, hide floating tag to prevent overflow */
  .hero__photo { aspect-ratio: 4/5; }
  .hero__tag { display: none; }

  /* Final CTA: 120px was excessive on mobile */
  .final-cta { padding: 64px 0; }

  /* Metric cards: reduce padding in single-column */
  .metric-card { padding: 28px 20px; }

  /* Section tight: reduce for mobile */
  .section--tight { padding: 40px 0; }

  /* Lead magnet form padding */
  .lead-magnet__form { padding: 24px; }

  /* Logos row spacing */
  .logos { padding: 28px 0; }
  .logos__marquee { gap: 16px; }
  .logo-item { font-size: 13px; }
  .logo-item::after { margin: 0 20px; }

}

/* === BLOG POST BLOCKQUOTE CONTRAST FIX ===
   Root cause: .post-article p:first-child (specificity 0,2,1) beats
   .post-article blockquote p (specificity 0,1,2) because the blockquote <p>
   is the first child of <blockquote>. These rules win at (0,2,2) and (0,1,2)
   respectively, ensuring white text on the dark navy blockquote background. */
.post-article blockquote p,
.post-article blockquote p:first-child {
  color: var(--text-white);
  margin: 0;
}
.post-article blockquote cite {
  color: var(--text-faint);
}
.post-article blockquote strong,
.post-article blockquote em {
  color: inherit;
}

/* === BLOG POST DARK CARD COMPONENT OVERRIDES ===
   Root cause: .post-article p (0,1,1) and .post-article p:first-child (0,2,1)
   in page-level CSS override component class-only rules (0,1,0) for any <p>
   element inside .post-article — including dark-background card components.
   Selectors here use compound class+descendant chains to reach (0,2,1) and
   (0,3,1) specificity, beating the page rules from the external stylesheet. */

/* --- INLINE CTA CARD (.post-inline-cta) --- */
/* General p inside inline-cta: (0,2,1) beats .post-article p (0,1,1) */
.post-article .post-inline-cta p {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}
/* First-child p: (0,3,1) beats .post-article p:first-child (0,2,1) */
.post-article .post-inline-cta p:first-child {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}
/* Sub text — class+container combo (0,3,0) beats (0,2,1) for non-first-child */
.post-article .post-inline-cta .post-inline-cta__sub {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- AUTHOR BOX (.post-author-box) --- */
/* General p: (0,2,1) — default to faint for bio/label text */
.post-article .post-author-box p {
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 8px;
}
/* First-child p (the label): (0,3,1) — accent color, small caps */
.post-article .post-author-box p:first-child {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  line-height: 1.4;
}
/* Author name: (0,3,0) — white, large heading */
.post-article .post-author-box .post-author-box__name {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 8px;
}

/* --- HIGHLIGHT BOX (.post-highlight) --- */
/* First-child p: (0,3,1) — restores correct dark-amber on cream background */
.post-article .post-highlight p:first-child {
  color: #5C4200;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Webinár regisztrációs oldal
   ============================================================ */
.webinar-hero {
  padding: var(--section-pad) 0 60px;
  background: var(--bg-darkest);
  color: var(--text-white);
  text-align: center;
}
.webinar-hero .badge {
  margin-bottom: 24px;
}
.webinar-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.webinar-hero h1 {
  color: var(--text-white);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  max-width: 780px;
  margin: 0 auto 20px;
}
.webinar-hero__hook {
  color: var(--text-faint);
  font-size: 19px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 16px;
}
.webinar-hero__date {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 32px;
}
.webinar-for-whom,
.webinar-learn {
  padding: 60px 0;
}
.webinar-for-whom__list,
.webinar-learn__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.webinar-for-whom__list .lead-magnet__point,
.webinar-learn__list .lead-magnet__point {
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .webinar-for-whom__list,
  .webinar-learn__list {
    grid-template-columns: 1fr;
  }
}
.webinar-about {
  padding: 60px 0;
  background: var(--bg-light);
  color: var(--text-mid);
}
.webinar-about__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.webinar-about__inner p:last-child {
  font-size: 16px;
  line-height: 1.75;
}
.webinar-signup {
  padding: 80px 0;
  background: var(--bg-dark);
}
.webinar-signup__form {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* === WORKSHOP HERO MOBILE FIX ===
   Root cause: .webinar-hero's top padding comes from --section-pad, which
   the responsive breakpoints shrink to 56px at <=640px (72px at <=1024px).
   The fixed .nav bar is ~64px tall (20px top/bottom padding + logo/hamburger
   row) with no background until scrolled, so below 640px the hero's badge
   and heading rendered underneath that transparent band and visually
   overlapped the nav instead of clearing it. All other hero variants
   (.hero, .post-hero, .page-hero) already pin an explicit, nav-safe mobile
   padding instead of relying on --section-pad; .webinar-hero never got that
   pass. Same fix here. */
@media (max-width: 768px) {
  .webinar-hero { padding: 100px 0 40px; }
  .webinar-signup__form { padding: 28px; }
  .webinar-hero__ctas { flex-direction: column; }
  .webinar-hero__ctas .btn { width: 100%; justify-content: center; }
}

.webinar-teaser {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-light);
}
.webinar-teaser h2 {
  max-width: 640px;
  margin: 0 auto 12px;
}
.webinar-teaser p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--text-light);
}

/* === CAL.COM BOOKING BOX (Calendly leváltása) === */
.booking-inline-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 4px 4px;
  text-align: center;
}
.booking-inline-box__lead {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}
.booking-inline-box > div { width: 100%; border-radius: 8px; }

/* === BLOG POST SIDEBAR NEWSLETTER === */
.sidebar-newsletter {
  background: #FFFFFF;
  border: 1px solid #E4E7EE;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}
.sidebar-newsletter__title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.sidebar-newsletter__sub {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}
.sidebar-newsletter .form-input { font-size: 14px; padding: 11px 14px; margin-bottom: 10px; }
.sidebar-newsletter .form-consent span { font-size: 11.5px; }
.sidebar-newsletter .btn { margin-top: 10px; }
