/* Home hero + inner page hero blocks */

/* Generic page hero (inner pages) — home uses .flc-hero--home in home.css */
.flc-hero:not(.flc-hero--home) {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--flc-surface-muted);
}

.flc-hero:not(.flc-hero--home) .flc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 72% center;
  will-change: transform;
}

.flc-hero:not(.flc-hero--home) .flc-hero-curve {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: var(--flc-blue);
  pointer-events: none;
}

.flc-hero-glow {
  position: absolute;
  left: -8%;
  top: 18%;
  z-index: 2;
  width: 42%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
  animation: flc-hero-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.flc-hero-orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.flc-hero-orb--a {
  width: 18px;
  height: 18px;
  left: 46%;
  top: 22%;
  background: var(--flc-orange);
  animation-delay: -1.5s;
}

.flc-hero-orb--b {
  width: 12px;
  height: 12px;
  left: 52%;
  bottom: 28%;
  background: #fff;
  animation-delay: -3s;
}

.flc-hero-dots {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  top: 52%;
  z-index: 2;
  width: 72px;
  height: 108px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .85) 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: .45;
  pointer-events: none;
}

.flc-hero-inner {
  position: relative;
  z-index: 3;
  padding: 5rem 0 6.5rem;
  width: 100%;
}

.flc-hero-copy { max-width: min(36rem, 58vw); }

.flc-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.flc-hero-title-line { display: block; }

.flc-hero-title-accent {
  display: inline-block;
  font-size: 1.12em;
  margin-top: .1em;
}

.flc-hero-text {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1.05rem;
  opacity: .95;
  line-height: 1.65;
}

.flc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.flc-hero-btn-primary {
  box-shadow: 0 10px 28px rgba(224, 51, 122, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.flc-hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(224, 51, 122, 0.42);
}

.flc-hero-btn-secondary {
  transition: transform 0.25s ease, background 0.2s ease;
}

.flc-hero-btn-secondary:hover {
  transform: translateY(-2px);
}

.flc-hero-badge {
  position: absolute;
  right: clamp(1rem, 6vw, 5rem);
  top: clamp(6rem, 22vh, 10rem);
  z-index: 4;
  display: none;
}

@media (min-width: 768px) {
  .flc-hero-badge { display: block; }
}

.flc-hero-bubble {
  position: relative;
  max-width: 240px;
  padding: 1.35rem 1.35rem 1.2rem;
  background: #fff;
  color: var(--flc-pink);
  border-radius: 24px;
  box-shadow: var(--flc-shadow);
}

.flc-hero-bubble::after {
  content: "";
  position: absolute;
  left: 1.75rem;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(26, 50, 96, .08);
}

.flc-hero-bubble p {
  margin: 0;
  font-family: var(--flc-font-script);
  font-size: 1.45rem;
  line-height: 1.25;
}

.flc-hero-title .flc-hero-heart {
  display: inline-block;
  vertical-align: middle;
  margin-left: .25rem;
  color: var(--flc-pink);
  transform-origin: center;
}

.flc-hero-title .flc-hero-heart svg { width: 1.35rem; height: 1.35rem; }

.flc-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  color: #fff;
  line-height: 0;
  z-index: 5;
}

.flc-hero-wave-accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 82px;
  height: 4px;
  background: var(--flc-orange);
  z-index: 1;
}

.flc-hero-wave svg { width: 100%; height: 88px; }

@media (max-width: 767px) {
  .flc-hero-curve { color: var(--flc-navy-soft); opacity: .96; }
  .flc-hero-bg { background-position: center; }
  .flc-hero-copy { max-width: none; }
  .flc-hero-dots,
  .flc-hero-orb,
  .flc-hero-glow { display: none; }
}

/* Inner page hero */
.flc-page-hero {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.flc-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.flc-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 38, 72, .92) 0%, rgba(18, 38, 72, .58) 55%, rgba(18, 38, 72, .28) 100%);
}

.flc-page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.5rem;
  max-width: 720px;
}

.flc-page-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.flc-page-hero-title-main { display: inline; }

.flc-page-hero-title-accent {
  display: inline-block;
  margin-left: .2em;
  font-size: 1.08em;
  color: var(--flc-pink);
}

.flc-page-hero-title .flc-heart {
  color: var(--flc-pink);
  margin-left: .25rem;
}

.flc-page-hero-text {
  margin: 0;
  font-size: 1.05rem;
  opacity: .92;
  max-width: 38rem;
  line-height: 1.65;
}

.flc-page-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  color: #fff;
  line-height: 0;
  z-index: 2;
}

.flc-page-hero-wave svg { width: 100%; height: 72px; }

.flc-page-hero-wave-accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 68px;
  height: 3px;
  background: var(--flc-orange);
  z-index: 1;
}
