/* BoddyFit marketing — matches app visual system */

:root {
  --bf-bg: #020617;
  --bf-surface: #0f172a;
  --bf-border: #1e293b;
  --bf-text: #f1f5f9;
  --bf-muted: #94a3b8;
  --bf-emerald: #10b981;
  --bf-emerald-hot: #34d399;
  --bf-emerald-btn: #059669;
  --bf-amber-bg: rgba(69, 26, 3, 0.35);
  --bf-amber-border: rgba(146, 64, 14, 0.45);
  --bf-amber-text: #fde68a;
  --bf-font: "Geist", "DM Sans", system-ui, sans-serif;
  --bf-mono: "Geist Mono", ui-monospace, monospace;
  --bf-max: 720px;
  --bf-wide: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.bf {
  min-height: 100vh;
  background: var(--bf-bg);
  color: var(--bf-text);
  font-family: var(--bf-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.bf a {
  color: var(--bf-emerald-hot);
}

.bf a:hover {
  text-decoration: underline;
}

.bf-skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 50;
  padding: 0.5rem 0.75rem;
  background: var(--bf-emerald);
  color: #022c22;
  text-decoration: none;
  border-radius: 6px;
}

.bf-skip:focus {
  top: 1rem;
}

.bf-top {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bf-border);
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(10px);
}

.bf-top__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bf-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--bf-emerald-hot);
  font-weight: 600;
  font-size: 1.3rem;
}

.bf-logo:hover {
  text-decoration: none;
}

.bf-logo__tag {
  color: var(--bf-muted);
  font-weight: 400;
  font-size: 0.85rem;
}

.bf-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  font-size: 0.9rem;
}

.bf-top nav a {
  color: var(--bf-muted);
  text-decoration: none;
}

.bf-top nav a:hover,
.bf-top nav a[aria-current="page"] {
  color: var(--bf-emerald-hot);
}

.bf-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: 2.5rem 1.25rem 3rem;
  overflow: hidden;
}

.bf-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16, 185, 129, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(6, 78, 59, 0.35), transparent 50%),
    linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
  animation: bf-pulse 10s ease-in-out infinite alternate;
}

.bf-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  animation: bf-grid 20s linear infinite;
}

@keyframes bf-pulse {
  from { filter: brightness(1); }
  to { filter: brightness(1.08); }
}

@keyframes bf-grid {
  from { transform: translateY(0); }
  to { transform: translateY(24px); }
}

.bf-hero__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--bf-wide);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
  animation: bf-in 0.85s ease-out both;
}

@media (min-width: 900px) {
  .bf-hero__stage {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
  }
}

.bf-hero__inner {
  max-width: 34rem;
}

@keyframes bf-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bf-hero__brand {
  font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bf-text);
  margin-bottom: 0.35rem;
}

.bf-hero__tagline {
  color: var(--bf-emerald-hot);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.bf-hero__line {
  color: var(--bf-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.bf-phone {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.bf-phone img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--bf-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #020617;
}

.bf-phone--hero {
  justify-self: center;
}

.bf-phone--hero img {
  width: min(100%, 300px);
  animation: bf-phone-in 1s ease-out 0.15s both;
}

@keyframes bf-phone-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bf-phone figcaption {
  max-width: 280px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--bf-muted);
  line-height: 1.4;
}

.bf-phone figcaption strong {
  display: block;
  color: var(--bf-emerald-hot);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.bf-screens-hint {
  color: var(--bf-muted);
  font-size: 0.88rem;
  margin: -0.75rem 0 1rem;
}

.bf-screens {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 1.15rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 185, 129, 0.45) rgba(15, 23, 42, 0.8);
}

.bf-screens::-webkit-scrollbar {
  height: 6px;
}

.bf-screens::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(30, 41, 59, 0.9);
}

.bf-screens::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.35), rgba(52, 211, 153, 0.65));
  border-radius: 999px;
}

.bf-screens::-webkit-scrollbar-thumb:hover {
  background: rgba(52, 211, 153, 0.85);
}

.bf-screens::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.bf-screens .bf-phone {
  scroll-snap-align: start;
}

.bf-screens .bf-phone img {
  width: 100%;
}

.bf-phone__zoom {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  border-radius: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-phone__zoom:hover {
  transform: translateY(-3px);
}

.bf-phone__zoom:focus-visible {
  outline: 2px solid var(--bf-emerald-hot);
  outline-offset: 3px;
}

.bf-phone__zoom img {
  pointer-events: none;
  width: 100%;
}

body.bf-lightbox-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.bf-lightbox[hidden] {
  display: none !important;
}

.bf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.bf-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.bf-lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: min(100%, 420px);
  width: 100%;
}

.bf-lightbox__img {
  display: block;
  width: 100%;
  max-height: min(82vh, 900px);
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid var(--bf-border);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  background: #020617;
}

.bf-lightbox__caption {
  margin: 0;
  text-align: center;
  color: var(--bf-muted);
  font-size: 0.92rem;
  line-height: 1.4;
  max-width: 36ch;
}

.bf-lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--bf-border);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  color: #e2e8f0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.bf-lightbox__close:hover,
.bf-lightbox__nav:hover {
  color: var(--bf-emerald-hot);
  border-color: rgba(52, 211, 153, 0.45);
}

.bf-lightbox__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--bf-border);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  color: #e2e8f0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.bf-lightbox__nav--prev {
  left: -0.35rem;
}

.bf-lightbox__nav--next {
  right: -0.35rem;
}

@media (max-width: 520px) {
  .bf-lightbox__nav--prev {
    left: 0.15rem;
  }

  .bf-lightbox__nav--next {
    right: 0.15rem;
  }

  .bf-lightbox__close {
    right: 0.15rem;
  }
}

.bf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 10px;
  background: var(--bf-emerald-btn);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bf-cta:hover {
  background: var(--bf-emerald);
  transform: translateY(-1px);
}

.bf-cta--ghost {
  background: transparent;
  border: 1px solid var(--bf-border);
  color: var(--bf-text) !important;
  margin-left: 0.65rem;
}

.bf-cta--ghost:hover {
  border-color: var(--bf-emerald);
  background: rgba(16, 185, 129, 0.08);
}

.bf-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.bf-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--bf-muted);
}

.bf-section {
  padding: 3.5rem 1.25rem;
  border-top: 1px solid var(--bf-border);
}

.bf-section__inner {
  max-width: var(--bf-max);
  margin: 0 auto;
}

.bf-section--wide .bf-section__inner {
  max-width: var(--bf-wide);
}

.bf-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.bf-section > .bf-section__inner > p.lead,
.bf-section .lead {
  color: var(--bf-muted);
  margin-bottom: 1.75rem;
}

.bf-steps {
  display: grid;
  gap: 0.85rem;
  counter-reset: step;
}

.bf-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--bf-border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
}

.bf-step::before {
  counter-increment: step;
  content: counter(step);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--bf-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bf-emerald-hot);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.bf-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.bf-step p {
  color: var(--bf-muted);
  font-size: 0.92rem;
}

.bf-features {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .bf-features {
    grid-template-columns: 1fr 1fr;
  }
}

.bf-feature {
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--bf-border);
  border-radius: 12px;
  background: var(--bf-surface);
}

.bf-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--bf-emerald-hot);
}

.bf-feature p {
  color: var(--bf-muted);
  font-size: 0.92rem;
}

.bf-goals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bf-goal {
  font-family: var(--bf-mono);
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--bf-border);
  color: var(--bf-text);
  background: rgba(2, 6, 23, 0.6);
}

.bf-warn {
  padding: 1.15rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--bf-amber-border);
  background: var(--bf-amber-bg);
  color: var(--bf-amber-text);
}

.bf-warn h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
  color: #fef3c7;
}

.bf-warn p {
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}

.bf-warn p:last-child {
  margin-bottom: 0;
}

.bf-flow {
  font-family: var(--bf-mono);
  font-size: 0.85rem;
  color: #e2e8f0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid var(--bf-border);
  margin: 1rem 0;
  overflow-x: auto;
}

.bf-legal-doc {
  max-width: var(--bf-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

.bf-legal-doc h1 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.bf-legal-doc .meta {
  color: var(--bf-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.bf-url-line {
  font-family: var(--bf-mono, ui-monospace, monospace);
  font-size: 0.8rem;
  color: var(--bf-muted);
  margin-bottom: 1.5rem;
  word-break: break-all;
}

.bf-url-line a {
  color: var(--bf-emerald-hot);
}

.bf-link-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bf-link-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--bf-border);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.45);
}

.bf-link-list span {
  font-size: 0.8rem;
  color: var(--bf-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bf-link-list a {
  color: var(--bf-emerald-hot);
  font-family: var(--bf-mono, ui-monospace, monospace);
  font-size: 0.85rem;
  word-break: break-all;
}

.bf-legal-doc section {
  margin-bottom: 1.35rem;
}

.bf-legal-doc h2 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.bf-legal-doc p,
.bf-legal-doc li {
  color: var(--bf-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.bf-legal-doc ul {
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.bf-doc-card {
  margin-bottom: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--bf-border);
  border-radius: 12px;
  background: var(--bf-surface);
}

.bf-faq {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}

.bf-faq__item {
  border: 1px solid var(--bf-border);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.45);
  overflow: hidden;
}

.bf-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bf-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.bf-faq__item summary::-webkit-details-marker {
  display: none;
}

.bf-faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--bf-emerald-hot);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
}

.bf-faq__item[open] summary::after {
  content: "–";
}

.bf-faq__item summary:hover {
  color: var(--bf-emerald-hot);
}

.bf-faq__item p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  color: var(--bf-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.bf-faq__item code {
  font-family: var(--bf-mono, ui-monospace, monospace);
  font-size: 0.85em;
  color: var(--bf-emerald-hot);
}

.bf-footer {
  border-top: 1px solid var(--bf-border);
  padding: 1.75rem 1.25rem 2.25rem;
}

.bf-footer__inner {
  max-width: var(--bf-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--bf-muted);
  text-align: center;
}

.bf-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.1rem;
}

.bf-footer__links a {
  color: var(--bf-muted);
  text-decoration: none;
}

.bf-footer__links a:hover {
  color: var(--bf-emerald-hot);
}

/* Contact page */
.bf-logo--studio {
  align-items: center;
  gap: 0.55rem;
}

.bf-logo__mark {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.bf-contact-hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.25rem 4rem;
  overflow: hidden;
}

.bf-contact-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(16, 185, 129, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 75%, rgba(6, 78, 59, 0.3), transparent 50%),
    linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
  animation: bf-pulse 10s ease-in-out infinite alternate;
}

.bf-contact-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, #000 15%, transparent 75%);
  pointer-events: none;
}

.bf-contact-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.bf-contact-hero__eyebrow {
  color: var(--bf-emerald-hot);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.bf-contact-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.bf-contact-hero .lead {
  color: var(--bf-muted);
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.bf-contact-hero__alt {
  color: var(--bf-muted);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}

.bf-contact-hero__alt a {
  text-decoration: none;
}

.bf-contact-hero__alt a:hover {
  text-decoration: underline;
}

.bf-contact-form {
  text-align: left;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(52, 211, 153, 0.18);
  background: rgba(15, 23, 42, 0.88);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.6),
    0 28px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.bf-form-group {
  margin-bottom: 1.15rem;
}

.bf-form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #cbd5e1;
}

.bf-form-control {
  display: block;
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(2, 6, 23, 0.75);
  color: var(--bf-text);
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bf-form-control::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.bf-form-control:focus {
  outline: none;
  border-color: var(--bf-emerald);
  background: rgba(2, 6, 23, 0.92);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.bf-form-control--select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.bf-form-control--select option {
  background: #0f172a;
  color: #f1f5f9;
}

.bf-form-control--area {
  min-height: 7.5rem;
  height: 7.5rem;
  resize: vertical;
}

.bf-form-submit {
  display: block;
  width: 100%;
  min-height: 2.9rem;
  margin-top: 0.25rem;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-form-submit:hover {
  background: linear-gradient(135deg, #047857, #059669);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.28);
}

.bf-form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.bf-form-success {
  margin-top: 0.95rem;
  padding: 0.7rem 0.85rem;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(6, 78, 59, 0.35);
  color: var(--bf-emerald-hot);
  font-size: 0.92rem;
  font-weight: 500;
}

.bf-form-success[hidden] {
  display: none !important;
}

@media (max-width: 600px) {
  .bf-top__inner {
    padding: 0 1rem;
    min-height: 60px;
  }

  .bf-logo {
    font-size: 1.1rem;
  }

  .bf-logo__tag {
    display: none;
  }

  .bf-logo__mark {
    width: 34px;
    height: 34px;
  }

  .bf-contact-form {
    padding: 1.35rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bf-hero__bg,
  .bf-hero__bg::before,
  .bf-contact-hero__bg,
  .bf-hero__stage,
  .bf-phone--hero img,
  .bf-cta {
    animation: none !important;
    transition: none !important;
  }
}
