/* BRANDMAKERS — главная (светлая тема, стиль основного сайта) */

.home-hero {
  min-height: 100vh;
  padding: calc(var(--bm-header-h) + 48px) 0 64px;
  background: var(--bm-white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.home-hero__kicker {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bm-orange);
  margin-bottom: 16px;
}

.home-hero__title {
  font-family: var(--bm-font-heading);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--bm-dark);
  margin-bottom: 20px;
}

.home-hero__title em {
  font-style: normal;
  color: var(--bm-orange);
}

.home-hero__lead {
  font-size: 17px;
  color: var(--bm-gray);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-page .home-hero__btn-outline {
  background: transparent;
  color: var(--bm-dark);
  border: 1.5px solid var(--bm-dark);
}

.home-page .home-hero__btn-outline:hover {
  background: var(--bm-dark);
  color: var(--bm-white);
}

.home-hero__visual {
  display: flex;
  justify-content: center;
}

.casey-hero {
  max-width: 350px;
  width: 100%;
  height: auto;
  animation: casey-float 3s ease-in-out infinite;
}

@keyframes casey-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Ticker */
.ticker-wrapper {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--bm-border);
  border-bottom: 1px solid var(--bm-border);
  opacity: 0.55;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker-move 40s linear infinite;
  font-size: 14px;
  color: var(--bm-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ticker-dot {
  opacity: 0.5;
}

@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections typography */
.home-section .section__title {
  color: var(--bm-dark);
  text-transform: uppercase;
}

.home-section .section__subtitle {
  color: var(--bm-gray);
  max-width: 640px;
}

.home-section__label {
  background: rgba(255, 79, 0, 0.08);
  color: var(--bm-orange);
  border: 1px solid rgba(255, 79, 0, 0.15);
}

.home-section--alt {
  background: var(--bm-white);
  border-top: 1px solid var(--bm-border);
  border-bottom: 1px solid var(--bm-border);
}

.section--dark-alt {
  background: var(--bm-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--bm-white);
  border-top: none;
}

/* Counters */
.home-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-counter {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--bm-dur) var(--bm-ease), box-shadow var(--bm-dur) var(--bm-ease);
}

.home-counter:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-lg);
}

.home-counter__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.home-counter__value {
  font-family: var(--bm-font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--bm-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.home-counter__value--static {
  font-family: var(--bm-font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--bm-orange);
}

.home-counter__label {
  font-size: 13px;
  color: var(--bm-gray);
  line-height: 1.45;
}

/* Products 2×2 */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-card {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bm-shadow-xl);
  border-color: var(--bm-orange);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bm-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-badge--violet {
  background: #7C3AED;
}

.product-card__icon {
  font-size: 32px;
}

.product-card__title {
  font-family: var(--bm-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--bm-dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.product-card__desc {
  font-size: 14px;
  color: var(--bm-gray);
  line-height: 1.65;
  flex-grow: 1;
}

.product-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

.home-page .product-card .btn--outline {
  border-color: var(--bm-dark);
  color: var(--bm-dark);
}

.home-page .product-card .btn--outline:hover {
  border-color: var(--bm-orange);
  background: var(--bm-orange);
  color: var(--bm-white);
}

.casey-mini {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: auto;
  opacity: 0.15;
  transition: opacity 0.3s;
  pointer-events: none;
}

.product-card:hover .casey-mini {
  opacity: 0.7;
}

/* Pricing */
.pricing-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1100px;
  width: 100%;
}

.pricing-card {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--bm-dur) var(--bm-ease), box-shadow var(--bm-dur) var(--bm-ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-lg);
}

.pricing-card--featured {
  border: 2px solid var(--bm-blue);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 71, 255, 0.1);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bm-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.pricing-card__name {
  font-family: var(--bm-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--bm-dark);
  text-transform: uppercase;
}

.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--bm-orange);
  margin: 16px 0 4px;
}

.pricing-period {
  color: var(--bm-gray-light);
  font-size: 14px;
}

.pricing-for {
  font-size: 14px;
  color: var(--bm-gray-light);
  margin-top: 8px;
}

.pricing-list {
  text-align: left;
  margin: 24px 0;
  list-style: none;
  padding: 0;
}

.pricing-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bm-border);
  font-size: 15px;
  color: var(--bm-gray);
}

.pricing-list li::before {
  content: "\2713  ";
  color: #16a34a;
  font-weight: 700;
}

.pricing-bonus {
  font-size: 14px;
  color: var(--bm-dark);
  margin-bottom: 20px;
}

.home-page .pricing-card .btn--outline {
  border-color: var(--bm-dark);
  color: var(--bm-dark);
}

.home-page .pricing-card .btn--outline:hover {
  background: var(--bm-dark);
  color: var(--bm-white);
}

.pricing-casey {
  flex: 0 0 auto;
  align-self: center;
  max-width: 200px;
}

.pricing-casey img {
  width: 100%;
  height: auto;
}

/* Tripwires */
.tripwire-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

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

.tripwire-scroll::-webkit-scrollbar-thumb {
  background: var(--bm-gray-mid);
  border-radius: 3px;
}

.tripwire-card {
  min-width: 200px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.tripwire-card:hover {
  border-color: var(--bm-orange);
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow);
}

.tripwire-card__title {
  font-family: var(--bm-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--bm-dark);
  margin-bottom: 8px;
}

.tripwire-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--bm-orange);
  margin: 12px 0 4px;
}

.tripwire-time {
  font-size: 13px;
  color: var(--bm-gray-light);
}

.tripwire-desc {
  font-size: 12px;
  color: var(--bm-gray);
  margin-top: 12px;
  line-height: 1.4;
}

/* AI-Звонарь */
.home-call {
  position: relative;
  overflow: hidden;
  background: var(--bm-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--bm-white);
}

.home-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 79, 0, 0.1), transparent 55%);
  pointer-events: none;
}

.home-call .section__title,
.home-call .section__label {
  color: var(--bm-white);
}

.home-call .home-section__label {
  background: rgba(255, 79, 0, 0.15);
  color: var(--bm-orange);
  border-color: rgba(255, 79, 0, 0.3);
}

.home-call__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.home-call__subtitle {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.home-call__lead {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 520px;
}

.home-call__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 32px;
}

.home-call__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-call__stat strong {
  font-family: var(--bm-font-heading);
  font-size: 22px;
  color: var(--bm-orange);
}

.home-call__stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 120px;
}

.home-call__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 60px;
}

.waveform-bar {
  width: 4px;
  height: 10px;
  background: var(--bm-orange);
  border-radius: 2px;
  animation: wave-bar 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { animation-delay: 0s; }
.waveform-bar:nth-child(2) { animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { animation-delay: 0.15s; }
.waveform-bar:nth-child(8) { animation-delay: 0.25s; }
.waveform-bar:nth-child(9) { animation-delay: 0.35s; }
.waveform-bar:nth-child(10) { animation-delay: 0.45s; }
.waveform-bar:nth-child(11) { animation-delay: 0.05s; }
.waveform-bar:nth-child(12) { animation-delay: 0.55s; }

@keyframes wave-bar {
  0%, 100% { height: 10px; }
  50% { height: 50px; }
}

.home-call__icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.home-call__phone {
  font-size: 40px;
}

.home-call__crm {
  font-size: 14px;
  font-weight: 700;
  color: var(--bm-white);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.home-call__casey {
  max-width: 180px;
  opacity: 0.95;
}

/* Team */
.home-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.home-team__founder {
  text-align: center;
  max-width: 560px;
}

.home-team__photo-wrap {
  margin-bottom: 20px;
}

.home-team__photo-placeholder {
  width: 200px;
  height: 260px;
  margin: 0 auto;
  border-radius: 16px;
  border: 2px solid rgba(255, 79, 0, 0.3);
  background: linear-gradient(145deg, rgba(255, 79, 0, 0.06), var(--bm-white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.home-team__name {
  font-family: var(--bm-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--bm-dark);
  text-transform: uppercase;
}

.home-team__role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bm-orange);
  margin: 8px 0 20px;
}

.home-team__quote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bm-gray);
  font-style: italic;
  padding: 0 16px;
  border-left: 3px solid var(--bm-orange);
  text-align: left;
}

.home-team__casey-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 900px;
}

.home-team__role-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: 12px;
  padding: 14px 16px;
  list-style: none;
  transition: transform var(--bm-dur) var(--bm-ease), box-shadow var(--bm-dur) var(--bm-ease);
}

.home-team__role-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bm-shadow);
}

.home-team__role-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(22, 163, 74, 0.4);
}

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

.home-team__role-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bm-dark);
}

.home-team__role-status {
  font-size: 11px;
  color: var(--bm-gray-light);
}

.home-team__role-status .live-dot {
  color: #22c55e;
}

/* Cases */
.cases-section .section__subtitle {
  color: var(--bm-gray);
}

.case-card {
  position: relative;
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  color: var(--bm-dark);
  transition: transform var(--bm-dur) var(--bm-ease), box-shadow var(--bm-dur) var(--bm-ease);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-lg);
}

.case-card__text {
  color: var(--bm-gray);
}

.case-card__title {
  color: var(--bm-dark);
}

.case-card__casey {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: auto;
  opacity: 0.5;
  z-index: 1;
}

.case-card__casey--wow {
  transform: rotate(-8deg);
}

/* Industries */
.industries-grid--home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.industries-grid--2 {
  margin-top: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.industry-card {
  border-radius: var(--bm-radius-lg);
  padding: 28px 24px;
  cursor: default;
  transition:
    transform var(--bm-dur) var(--bm-ease),
    box-shadow var(--bm-dur) var(--bm-ease),
    border-color var(--bm-dur) ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-card__emoji {
  font-size: 28px;
  line-height: 1;
}

.industry-card__title {
  font-family: var(--bm-font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.industry-card__desc {
  font-size: 13px;
  line-height: 1.6;
  flex-grow: 1;
}

.industry-card__services {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.industry-card__service {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.industry-card__service::before {
  content: "\2192";
  color: var(--bm-orange);
  font-size: 11px;
}

.industry-card--dark {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  color: var(--bm-dark);
}

.industry-card--dark .industry-card__desc {
  color: var(--bm-gray);
}

.industry-card--dark .industry-card__service {
  color: var(--bm-gray-light);
}

.industry-card--dark:hover {
  border-color: var(--bm-orange);
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  box-shadow: var(--bm-shadow-xl);
}

.industries-toggle-wrap {
  text-align: center;
  margin-top: 8px;
}

/* Workshop */
.home-workshop {
  border-top: 1px solid var(--bm-border);
  border-bottom: 1px solid var(--bm-border);
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.04), rgba(0, 71, 255, 0.03));
}

.home-workshop__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-workshop__list {
  margin: 24px 0;
  padding-left: 20px;
  color: var(--bm-gray);
  font-size: 15px;
  line-height: 1.8;
  list-style: disc;
}

.home-workshop__price {
  font-family: var(--bm-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--bm-orange);
  margin-bottom: 20px;
}

.home-workshop__visual {
  display: flex;
  justify-content: center;
}

.home-workshop__visual img {
  max-width: 280px;
}

/* Partners strip */
.home-partners {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: 20px;
  padding: 32px 36px;
  transition: box-shadow var(--bm-dur) var(--bm-ease);
}

.home-partners:hover {
  box-shadow: var(--bm-shadow);
}

.home-partners__icon {
  font-size: 40px;
}

.home-partners__body {
  flex: 1;
  min-width: 240px;
}

.home-partners__title {
  font-family: var(--bm-font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--bm-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.home-partners__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--bm-gray);
}

.home-partners__stats strong {
  color: #16a34a;
}

.home-partners__text {
  font-size: 14px;
  color: var(--bm-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.home-partners__casey {
  width: 100px;
  height: auto;
  opacity: 0.9;
}

/* FAQ — тёмная секция как accent */
.faq-list--home {
  max-width: 800px;
}

.faq-item--dark {
  background: var(--bm-dark-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-item--dark .faq-item__q {
  color: var(--bm-white);
}

.faq-item--dark .faq-item__q:hover {
  color: var(--bm-orange);
}

.faq-item--dark .faq-item__icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--bm-white);
}

.faq-item--dark.faq-item.active .faq-item__icon {
  background: var(--bm-orange);
  color: #fff;
}

.faq-item--dark .faq-item__a-inner {
  color: rgba(255, 255, 255, 0.75);
}

.faq-item--dark.faq-item.active .faq-item__a {
  max-height: 560px;
}

/* Contact */
.contact-section {
  border-radius: var(--bm-radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact-section--home {
  background-color: var(--bm-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.contact-section__info {
  color: var(--bm-white);
}

.contact-section__title {
  font-family: var(--bm-font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--bm-white);
}

.contact-section__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-section__perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-section__perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-section__perk-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--bm-radius-sm);
  background: rgba(255, 79, 0, 0.15);
  color: var(--bm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.contact-section__form-wrap {
  position: relative;
}

.contact-section__casey {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: -20px;
  z-index: 2;
  pointer-events: none;
}

/* CTA pulse — оранжевый */
.cta-pulse {
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(255, 79, 0, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 79, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 79, 0, 0); }
}

/* Sticky CTA */
.sticky-cta {
  display: none;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .industries-grid--home {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__actions {
    justify-content: center;
  }

  .home-counters {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-casey {
    order: -2;
    width: 100%;
    text-align: center;
    max-width: 160px;
    margin: 0 auto;
  }

  .home-call__inner {
    grid-template-columns: 1fr;
  }

  .home-workshop__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-workshop__list {
    text-align: left;
    display: inline-block;
  }

  .contact-section__casey {
    display: none;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: auto;
    padding-top: calc(var(--bm-header-h) + 32px);
  }

  .home-hero__visual {
    order: -1;
  }

  .home-hero__inner {
    display: flex;
    flex-direction: column;
  }

  .casey-hero {
    max-width: 200px;
    margin: 0 auto 20px;
  }

  .home-counters {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .home-counter {
    padding: 20px 12px;
  }

  .industries-grid--home {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 28px 24px;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: var(--bm-white);
    border-top: 1px solid var(--bm-border);
    z-index: var(--bm-z-overlay);
    text-align: center;
  }
}
