/* ==========================================================================
   listoshenkov.ru — единый стиль для всех страниц
   ========================================================================== */

:root {
  --bg:           #F5F0E8;
  --header:       #6B8F6B;
  --header-dark:  #5a7a5a;
  --accent:       #C8622A;
  --accent-soft:  #E08454;
  --card:         #FFFFFF;
  --ink:          #3D2B1F;
  --ink-2:        #8B7355;
  --pill-bg:      #EDE8DF;
  --pill-border:  #C8A882;
  --shadow:       0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 28px rgba(61,43,31,0.12);
  --radius-card:  12px;
  --radius-pill:  24px;
  --radius-btn:   24px;

  --maxw: 1100px;
  --pad-x: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============ Хедер для внутренних страниц ============ */
.site-header {
  background: var(--header);
  color: #fff;
  padding: 16px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}
.site-header a:hover { opacity: 0.85; }
.back-arrow { font-size: 20px; line-height: 1; }

/* ==================== HERO (главная) ==================== */
.hero {
  padding: 64px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.hero-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ddd;
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.hero .role {
  font-size: 20px;
  color: var(--ink-2);
  margin: 0 0 22px;
  font-weight: 500;
}
.hero .role .dot {
  display: inline-block; width: 4px; height: 4px;
  background: currentColor; border-radius: 50%;
  margin: 0 10px; vertical-align: middle; opacity: 0.55;
}
.divider {
  width: 64px; height: 3px;
  background: var(--accent); border: 0; border-radius: 2px;
  margin: 0 0 22px;
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 26px;
  max-width: 560px;
}
.hero .tags { margin-bottom: 30px; }

.tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
a.tag { text-decoration: none !important; cursor: pointer; transition: background .18s, border-color .18s; }
a.tag:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }
a.tag.tag-consult { background: linear-gradient(135deg,#1e1028,#2a1a3a); color: #fff !important; border-color: transparent; }
a.tag.tag-consult:hover { background: linear-gradient(135deg,#2a1a3a,#3b2050); opacity: 0.92; color: #fff !important; }
a.tag.tag-game { background: linear-gradient(135deg,#c1121f,#8b2c1a); color: #fff !important; border-color: transparent; }a.tag.tag-game:hover { background: linear-gradient(135deg,#e63946,#c1121f); opacity: 0.92; color: #fff !important; }

.tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

/* ==================== Кнопки ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200,98,42,0.28);
}
.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover { background: rgba(200,98,42,0.08); }
.btn-on-dark {
  background: #fff; color: var(--accent);
}
.btn-on-dark:hover { background: #fff5ee; }
.btn-on-dark.outline {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-on-dark.outline:hover { background: rgba(255,255,255,0.1); }
.btn-wide { min-width: 280px; }

/* ==================== Menu CTA (СделайМеню) ==================== */
.btn-menu-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 18px 22px;
  margin: 20px 0;
  background: linear-gradient(160deg, #4B1528 0%, #5d1d33 50%, #7a2a45 100%);
  color: #fff;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 4px 16px rgba(75,21,40,0.32);
  position: relative;
  overflow: hidden;
}
.btn-menu-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(75,21,40,0.42);
  filter: brightness(1.08);
}
.btn-menu-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
}
.btn-menu-title {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  gap: 10px;
  text-align: left;
}
.btn-menu-arrow {
  margin-left: auto;
  opacity: .85;
  transition: transform .15s ease;
}
.btn-menu-cta:hover .btn-menu-arrow { transform: translateX(2px); }
.btn-menu-hint {
  font-size: 14px;
  font-weight: 500;
  opacity: .92;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .btn-menu-cta { padding: 16px 18px; margin: 16px 0; }
  .btn-menu-title { font-size: 19px; }
  .btn-menu-hint { font-size: 13px; }
}

/* ==================== Menu suggestion card (на /tema/* и /guide/*) ==================== */
.menu-suggest {
  background: linear-gradient(135deg, #4B1528 0%, #5d1d33 50%, #7a2a45 100%);
  color: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 20px 0;
  transition: transform .15s ease, box-shadow .2s ease;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(75,21,40,.22);
}
.menu-suggest:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(75,21,40,.32);
}
.menu-suggest-icon  { font-size: 32px; flex-shrink: 0; line-height: 1; }
.menu-suggest-info  { flex: 1; min-width: 0; }
.menu-suggest-badge {
  display: inline-block; background: #D4537E; color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 10px;
  margin-bottom: 8px;
}
.menu-suggest-title {
  font-weight: 800; font-size: 16px; margin-bottom: 6px; color: #fff;
  line-height: 1.3;
}
.menu-suggest-desc  {
  font-size: 13px; color: rgba(255,255,255,.82);
  margin-bottom: 12px; line-height: 1.5;
}
.menu-suggest-cta   {
  display: inline-block; background: #D4537E; color: #fff;
  font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 20px;
}

/* ==================== Секции ==================== */
section { padding: 56px 0; }
.section-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-pro {
  background: var(--accent); color: #fff;
}
.badge-free {
  background: var(--header); color: #fff;
}

/* ==================== Три тезиса ==================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.pillar .icon {
  width: 44px; height: 44px;
  margin-bottom: 16px;
  color: var(--accent);
}
.pillar h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.pillar p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.6;
}

/* ==================== PRO карточки ==================== */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pro-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
}
.pro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61,43,31,0.12);
}
.pro-card .icon {
  width: 38px; height: 38px;
  color: var(--accent);
}
.pro-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}
.pro-card p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}
.pro-card .price {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  margin-top: 6px;
}

/* ==================== FREE карточки ==================== */
.free-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.free-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
  border-left: 3px solid var(--header);
}
.free-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61,43,31,0.10);
}
.free-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}
.free-card .tags { gap: 6px; }
.free-card .tag {
  font-size: 12px;
  padding: 4px 10px;
}

/* ==================== Отзывы ==================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 26px 26px;
  box-shadow: var(--shadow);
}
.review .quote-mark {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 8px;
  height: 24px;
}
.review p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.review .who {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}

/* ==================== Консультация ==================== */
.consult {
  background: var(--header);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 48px 44px;
  text-align: center;
}
.consult h2 {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.consult p {
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.92;
}
.consult-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==================== Footer ==================== */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(61,43,31,0.1);
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-2);
}
.site-footer p { margin: 0 0 8px; }
.site-footer .footer-name {
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
}
.site-footer .disclaimer {
  font-size: 13px;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: color .15s ease;
}
.social-links a:hover { color: var(--accent); }
.social-links a svg { width: 20px; height: 20px; }
.copyright {
  font-size: 13px;
  color: var(--ink-2);
  padding-top: 22px;
  border-top: 1px solid rgba(61,43,31,0.08);
  margin-top: 22px;
}

/* ==================== Внутренние страницы (guide / free) ==================== */
.page-content {
  padding: 48px 0 32px;
  max-width: 760px;
  margin: 0 auto;
}
.page-content .icon-hero {
  width: 64px; height: 64px;
  color: var(--accent);
  margin-bottom: 20px;
}
.page-content h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.page-content .price-big {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 20px;
}
.page-content .description {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 32px;
}
.page-content h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 18px;
  letter-spacing: -0.01em;
}
.chapters {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  counter-reset: chapter;
}
.chapters li {
  position: relative;
  padding: 14px 0 14px 48px;
  border-bottom: 1px solid rgba(61,43,31,0.08);
  font-size: 16px;
  line-height: 1.5;
  counter-increment: chapter;
}
.chapters li::before {
  content: counter(chapter, decimal-leading-zero);
  position: absolute;
  left: 0; top: 14px;
  font-weight: 800;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.chapters li:last-child { border-bottom: 0; }

.faq-item {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.faq-item .q {
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.4;
}
.faq-item .a {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.88;
}

.cta-block {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  text-align: center;
  margin: 48px 0 32px;
}
.cta-block h2 {
  margin: 0 0 18px;
  font-size: 26px;
  color: #fff;
}
.cta-block .consult-buttons { gap: 10px; }

/* ==================== Адаптив ==================== */
@media (max-width: 900px) {
  .hero { padding: 40px 0 32px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }
  .hero-photo { width: 220px; height: 220px; }
  .hero h1 { font-size: 40px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .tags { justify-content: center; }
  .divider { margin-left: auto; margin-right: auto; }

  section { padding: 40px 0; }
  .section-head h2 { font-size: 28px; }

  .pillars { grid-template-columns: 1fr; gap: 16px; }
  .pillar { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; column-gap: 14px; padding: 20px 18px; }
  .pillar .icon { grid-column: 1; grid-row: 1 / 3; width: 36px; height: 36px; margin-bottom: 0; align-self: center; }
  .pillar h3 { grid-column: 2; grid-row: 1; font-size: 17px; margin-bottom: 4px; align-self: end; }
  .pillar p { grid-column: 2; grid-row: 2; align-self: start; }
  .pro-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .free-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .consult { padding: 36px 24px; }
  .consult h2 { font-size: 26px; }

  .page-content h1 { font-size: 32px; }
  .page-content .description { font-size: 17px; }
}

@media (max-width: 560px) {
  :root { --pad-x: 16px; }
  .hero h1 { font-size: 32px; }
  .hero .role { font-size: 17px; }
  .hero p.lead { font-size: 17px; }
  .hero-photo { width: 200px; height: 200px; }
  .pro-grid { grid-template-columns: 1fr; }
  .pro-card { display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto auto; column-gap: 12px; }
  .pro-card .icon { grid-column: 1; grid-row: 1; width: 30px; height: 30px; align-self: center; }
  .pro-card h3 { grid-column: 2; grid-row: 1; align-self: center; font-size: 15px; }
  .pro-card p { grid-column: 1 / 3; grid-row: 2; }
  .pro-card .price { grid-column: 1 / 3; grid-row: 3; }
  .free-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 24px; }
  .btn-wide { width: 100%; min-width: 0; }
  .consult-buttons .btn { width: 100%; }
  .cta-block { padding: 28px 22px; }
  .cta-block .btn { width: 100%; }
  .page-content h1 { font-size: 28px; }
}

/* ===== Course CTA (Гормональный баланс) — цвета хиро курса ===== */
.btn-course-cta{display:flex;flex-direction:column;align-items:flex-start;gap:6px;width:100%;padding:18px 22px;margin:0 0 20px;background:linear-gradient(160deg,#1C1A3A 0%,#27235A 55%,#302C68 100%);color:#EDE8F8;border-radius:var(--radius-btn);text-decoration:none;font-weight:700;transition:transform .15s ease,box-shadow .15s ease,filter .15s ease;box-shadow:0 4px 16px rgba(28,26,58,.32);position:relative;overflow:hidden;border:1px solid rgba(230,178,60,.30);}
.btn-course-cta:hover{transform:translateY(-1px);box-shadow:0 6px 22px rgba(28,26,58,.42);filter:brightness(1.10);}
.btn-course-cta .btn-menu-eyebrow{color:#EDD9A0;opacity:1;}
.btn-course-cta .btn-menu-arrow{margin-left:auto;opacity:.85;transition:transform .15s ease;}
.btn-course-cta:hover .btn-menu-arrow{transform:translateX(2px);}
@media (max-width:720px){.btn-course-cta{padding:16px 18px;margin:0 0 16px;}}
.btn-course-ves-cta{display:flex;flex-direction:column;align-items:flex-start;gap:6px;width:100%;padding:18px 22px;margin:-6px 0 20px;background:linear-gradient(160deg,#16291D 0%,#1F3D2B 55%,#3C7A56 100%);color:#EAF5EE;border-radius:var(--radius-btn);text-decoration:none;font-weight:700;transition:transform .15s ease,box-shadow .15s ease,filter .15s ease;box-shadow:0 4px 16px rgba(31,61,43,.32);position:relative;overflow:hidden;border:1px solid rgba(216,162,74,.30);}
.btn-course-ves-cta:hover{transform:translateY(-1px);box-shadow:0 6px 22px rgba(31,61,43,.42);filter:brightness(1.10);}
.btn-course-ves-cta .btn-menu-eyebrow{color:#E7D2A0;opacity:1;}
.btn-course-ves-cta .btn-menu-arrow{margin-left:auto;opacity:.85;transition:transform .15s ease;}
.btn-course-ves-cta:hover .btn-menu-arrow{transform:translateX(2px);}
@media (max-width:720px){.btn-course-ves-cta{padding:16px 18px;margin:0 0 16px;}}
.btn-app-cta{display:flex;flex-direction:column;align-items:flex-start;gap:6px;width:100%;padding:18px 22px;margin:6px 0 8px;background:linear-gradient(160deg,#F2C75A 0%,#E6B23C 55%,#D29A2A 100%);color:#3F3214;border-radius:var(--radius-btn);text-decoration:none;font-weight:700;transition:transform .15s ease,box-shadow .15s ease,filter .15s ease;box-shadow:0 4px 18px rgba(199,149,43,.34);position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.45);}
.btn-app-cta:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(199,149,43,.44);filter:brightness(1.05);}
.btn-app-cta .btn-menu-eyebrow{color:#7a5e1a;opacity:1;}
.btn-app-cta .btn-menu-arrow{margin-left:auto;opacity:.9;transition:transform .15s ease;}
.btn-app-cta:hover .btn-menu-arrow{transform:translateX(2px);}
@media (max-width:720px){.btn-app-cta{padding:16px 18px;margin:4px 0 8px;}}
.btn-notes-cta{display:flex;flex-direction:column;align-items:flex-start;gap:6px;width:100%;padding:18px 22px;margin:-6px 0 20px;background:linear-gradient(160deg,#FBF7EE 0%,#F4E9D2 60%,#EDDDBE 100%);color:#5A4A2C;border-radius:var(--radius-btn);text-decoration:none;font-weight:700;transition:transform .15s ease,box-shadow .15s ease,filter .15s ease;box-shadow:0 4px 14px rgba(160,130,70,.18);position:relative;overflow:hidden;border:1px solid rgba(200,160,70,.45);}
.btn-notes-cta:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(160,130,70,.28);filter:brightness(1.02);}
.btn-notes-cta .btn-menu-eyebrow{color:#9A7B3A;opacity:1;}
.btn-notes-cta .btn-menu-arrow{margin-left:auto;opacity:.8;transition:transform .15s ease;}
.btn-notes-cta:hover .btn-menu-arrow{transform:translateX(2px);}
@media (max-width:720px){.btn-notes-cta{padding:16px 18px;margin:-4px 0 16px;}}
.btn-corp-cta{display:flex;flex-direction:column;align-items:flex-start;gap:6px;width:100%;padding:18px 22px;margin:6px 0 8px;background:linear-gradient(160deg,#2F3640 0%,#343b57 55%,#3A3F6B 100%);color:#fff;border-radius:var(--radius-btn);text-decoration:none;font-weight:700;transition:transform .15s ease,box-shadow .15s ease,filter .15s ease;box-shadow:0 4px 16px rgba(47,54,64,.32);position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.18);}
.btn-corp-cta:hover{transform:translateY(-1px);box-shadow:0 6px 22px rgba(47,54,64,.42);filter:brightness(1.08);}
.btn-corp-cta .btn-menu-eyebrow{opacity:.85;}
.btn-corp-cta .btn-menu-arrow{margin-left:auto;opacity:.9;transition:transform .15s ease;}
.btn-corp-cta:hover .btn-menu-arrow{transform:translateX(2px);}
@media (max-width:720px){.btn-corp-cta{padding:16px 18px;margin:4px 0 8px;}}
