/* ==========================================================================
   FlyConnect - landing page styles
   Replicates the Figma composition "1920w light" (node 179:8).
   Design grid: 1920px canvas / 1360px content column / 280px gutters.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  --fc-blue: #0084bd;
  --fc-blue-600: #0076a9;
  --fc-blue-700: #006490;
  --fc-blue-100: #e6f3f9;
  --fc-ink: #0e0e10;
  --fc-nav: #000000;
  --fc-ink-soft: #1c1c1f;
  --fc-body: #5b6670;
  --fc-body-light: rgba(255, 255, 255, 0.86);
  --fc-bg: #f5f5f5;
  --fc-dark: #161619;
  --fc-card: #ffffff;
  --fc-border: #e9ebee;
  --fc-border-strong: #d8dce1;

  --fc-radius-sm: 10px;
  --fc-radius: 14px;
  --fc-radius-lg: 24px;
  --fc-radius-pill: 999px;

  --fc-shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
  --fc-shadow: 0 12px 34px rgba(16, 24, 40, 0.08);
  --fc-shadow-lg: 0 26px 60px rgba(16, 24, 40, 0.14);
  --fc-shadow-phone: 0 30px 60px rgba(0, 0, 0, 0.28);

  --fc-container: 1360px;
  --fc-gutter: 30px;

  --fc-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Fluid type - the upper clamp value matches the 1920px design sizes. */
  --fc-h1: clamp(2.25rem, 0.85rem + 3.35vw, 4rem);
  --fc-h2: clamp(2rem, 0.95rem + 2.6vw, 3.5rem);
  --fc-h3: clamp(1.375rem, 1.1rem + 0.85vw, 1.625rem);
  --fc-lead: clamp(1rem, 0.94rem + 0.16vw, 1.125rem);
  --fc-text: clamp(0.9375rem, 0.9rem + 0.1vw, 1.0625rem);
}

/* ---------------------------------------------------------------- base --- */
* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--fc-font);
  background: var(--fc-bg);
  color: var(--fc-ink);
  font-size: var(--fc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--fc-blue);
}

:focus-visible {
  outline: 3px solid var(--fc-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.fc-container {
  width: 100%;
  max-width: calc(var(--fc-container) + var(--fc-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--fc-gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--fc-ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ------------------------------------------------------------ utilities -- */
/* Screen-reader-only. The subscribe forms label their input this way, so the
   text must stay announced but never painted. */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Spam trap. display:none rather than the clip technique above: the input is
   aria-hidden so nothing needs to announce it, and a merely off-screen field
   still gets completed by browser autofill and password managers — which makes
   the endpoint discard a genuine submission as spam. */
.fc-hp {
  display: none !important;
}

/* ------------------------------------------------------------ typography - */
.fc-h1 {
  font-size: var(--fc-h1);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.028em;
  margin: 0;
}

.fc-h2 {
  font-size: var(--fc-h2);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.028em;
  margin: 0;
}

.fc-h3 {
  font-size: var(--fc-h3);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.fc-lead {
  font-size: var(--fc-lead);
  line-height: 1.67;
  color: var(--fc-body);
  margin: 0;
}

.fc-muted {
  color: var(--fc-body);
}

/* Reproduces the comp's exact heading line breaks at desktop widths.
   Below 1200px the <br> is removed and headings wrap naturally. */
.fc-br {
  display: none;
}

@media (min-width: 1200px) {
  .fc-br {
    display: inline;
  }
}

.fc-section {
  padding: 50px 0;
}

/* Figma leaves 60px between a section header and the cards below it. */
.fc-mt-60 {
  margin-top: 60px;
}

/* Eyebrow pill - "Welcome to FlyConnect", "Our Features", ... */
.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 26px;
  border-radius: var(--fc-radius-pill);
  border: 1px solid var(--fc-border-strong);
  background: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fc-ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.fc-eyebrow--on-blue {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

/* ------------------------------------------------------------- buttons --- */
.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 55px;
  padding: 0 32px;
  border: 0;
  border-radius: var(--fc-radius-pill);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease,
    box-shadow 0.18s ease, color 0.18s ease;
}

.fc-btn:hover {
  transform: translateY(-2px);
}

.fc-btn:active {
  transform: translateY(0);
}

.fc-btn--primary {
  background: var(--fc-blue);
  color: #fff;
}

.fc-btn--primary:hover {
  background: var(--fc-blue-600);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 132, 189, 0.32);
}

.fc-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.fc-btn--ghost:hover {
  background: #fff;
  color: var(--fc-ink);
}

.fc-btn--sm {
  height: 51px;
  padding: 0 28px;
  font-size: 0.9375rem;
}

/* ---------------------------------------------------------------- navbar - */
.fc-navwrap {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  padding-top: 25px;
  pointer-events: none;
}

.fc-navwrap > * {
  pointer-events: auto;
}

.fc-nav {
  width: min(950px, calc(100% - 40px));
  margin-inline: auto;
  height: 75px;
  padding: 0 10px 0 30px;
  background: var(--fc-nav);
  border-radius: var(--fc-radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.fc-navwrap.is-stuck .fc-nav {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.fc-nav__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.fc-nav__brand img {
  width: 55px;
  height: 46px;
  object-fit: contain;
}

.fc-nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fc-nav__links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  position: relative;
  padding: 6px 0;
}

.fc-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--fc-blue);
  transition: right 0.25s ease;
}

.fc-nav__links a:hover,
.fc-nav__links a.is-active {
  color: #fff;
}

.fc-nav__links a:hover::after,
.fc-nav__links a.is-active::after {
  right: 0;
}

.fc-nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
}

/* Mobile drawer */
.fc-nav__drawer {
  display: none;
  width: min(950px, calc(100% - 40px));
  margin: 12px auto 0;
  background: var(--fc-nav);
  border-radius: var(--fc-radius-lg);
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.fc-nav__drawer.is-open {
  display: block;
}

.fc-nav__drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fc-nav__drawer a {
  display: block;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  font-size: 1.05rem;
}

.fc-nav__drawer a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.fc-nav__drawer .fc-btn {
  width: 100%;
  margin-top: 8px;
}

/* ------------------------------------------------------------------ hero - */
/* The press strip used to sit here and carry 50px of the 100px gap to the
   next block; with it gone the hero carries the whole gap itself. */
.fc-hero {
  position: relative;
  margin-bottom: 50px;
  background: var(--fc-blue);
  border-radius: 0 0 var(--fc-radius-lg) var(--fc-radius-lg);
  padding: 168px 0 0;
  color: #fff;
  overflow: hidden;
}

.fc-hero::after {
  /* soft light sweep, mirrors the gradient wash in the comp */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 78% 18%,
    rgba(255, 255, 255, 0.14),
    transparent 60%
  );
  pointer-events: none;
}

.fc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 606px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  padding-bottom: 106px;
}

.fc-hero__title {
  color: #fff;
  margin: 20px 0 0;
  max-width: 620px;
}

/* Figma node 179:34 is 606x52 — two lines at 16/26, not the 18/30 used by the
   section leads. Also resets the UA <p> bottom margin. */
.fc-hero__copy {
  color: var(--fc-body-light);
  max-width: 606px;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.625;
}

.fc-hero__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

/* App-store badges */
.fc-store {
  display: inline-flex;
  height: 81px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.fc-store img {
  height: 100%;
  width: auto;
  display: block;
}

.fc-store:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

/* Inline subscribe bar */
.fc-subscribe {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: var(--fc-radius-pill);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 8px 0 21px;
  margin-top: 25px;
  max-width: 606px;
  backdrop-filter: blur(6px);
}

.fc-subscribe input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.fc-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.fc-subscribe button {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--fc-radius-pill);
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fc-subscribe button:hover {
  background: #fff;
  color: var(--fc-blue);
}

.fc-subscribe--dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.fc-subscribe--dark button:hover {
  background: var(--fc-blue);
  color: #fff;
}

/* Form feedback line */
.fc-formnote {
  display: none;
  margin: 10px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.fc-formnote.is-shown {
  display: block;
}

.fc-formnote.is-error {
  color: #ffd7d7;
}

.fc-formnote.is-ok {
  color: #d6f5e5;
}

.fc-formnote--light.is-error {
  color: #c0392b;
}

.fc-formnote--light.is-ok {
  color: #1f8b5b;
}


/* ----------------------------------------------------------------- about - */
.fc-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 686px) minmax(0, 560px);
  gap: 114px;
  align-items: center;
}

.fc-about__title {
  margin: 30px 0 0;
}

.fc-about__copy {
  margin-top: 25px;
  max-width: 690px;
}

/* -------------------------------------------------------------- features - */
.fc-center {
  text-align: center;
}

.fc-center .fc-lead {
  margin-inline: auto;
}

.fc-sechead {
  max-width: 690px;
}

/* Figma gives each section header its own measure (node frame widths). */
.fc-sechead--steps {
  max-width: 515px;
}

.fc-sechead--faq {
  max-width: 728px;
}

.fc-sechead--testi {
  max-width: 592px;
}

.fc-sechead .fc-h2 {
  margin-top: 30px;
}

.fc-sechead .fc-lead {
  margin-top: 25px;
}

.fc-sechead--center {
  margin-inline: auto;
  text-align: center;
}

.fc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.fc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.fc-card {
  background: var(--fc-card);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.fc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fc-shadow);
  border-color: #dfe4ea;
}

.fc-feature {
  padding: 31px;
  min-height: 236px;
}

.fc-feature__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-blue);
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 20px;
}

.fc-feature h3 {
  margin-bottom: 10px;
}

.fc-feature p {
  margin: 0;
  color: var(--fc-body);
  line-height: 1.61;
}

/* ----------------------------------------------------------- survey CTA -- */
.fc-survey {
  position: relative;
  padding-block: 50px; /* matches .fc-section so gaps stay 100px */
}

/* Padding rather than a margin on the panel: a top margin would collapse
   through .fc-survey__inner and drag the absolutely-placed card down with it. */
.fc-survey__inner {
  position: relative;
  padding-top: 128px;
}

.fc-survey__panel {
  position: relative;
  background: radial-gradient(
      120% 120% at 15% 10%,
      rgba(255, 255, 255, 0.22),
      transparent 55%
    ),
    radial-gradient(90% 90% at 85% 90%, rgba(0, 0, 0, 0.18), transparent 60%),
    var(--fc-blue);
  border-radius: var(--fc-radius-lg);
  min-height: 507px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fc-survey__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      closest-side at 22% 30%,
      rgba(255, 255, 255, 0.16),
      transparent
    ),
    radial-gradient(
      closest-side at 60% 70%,
      rgba(255, 255, 255, 0.12),
      transparent
    ),
    radial-gradient(
      closest-side at 8% 78%,
      rgba(255, 255, 255, 0.1),
      transparent
    );
  background-size: 46% 42%, 40% 36%, 34% 30%;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Wide enough for the comp's 3-line heading, narrow enough to clear the
   571px form card floating over the panel's right edge. */
.fc-survey__copy {
  position: relative;
  padding: 60px;
  max-width: 780px;
}

.fc-survey__copy .fc-h2 {
  color: #fff;
  margin-top: 26px;
}

/* The form card floats over the panel, breaking past its top and bottom. */
.fc-survey__card {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 571px;
  max-width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--fc-shadow-lg);
  padding: 30px;
}

.fc-survey__card h3 {
  font-size: 1.5rem;
  line-height: 1.28;
  margin-bottom: 22px;
}

.fc-survey__q {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fc-ink);
  margin-bottom: 14px;
  line-height: 1.4;
}

.fc-radio {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--fc-ink-soft);
}

.fc-radio input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  margin: 0;
  border: 1.5px solid var(--fc-border-strong);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.fc-radio input:checked {
  border-color: var(--fc-blue);
}

.fc-radio input:checked::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--fc-blue);
}

.fc-radio:hover input {
  border-color: var(--fc-blue);
}

.fc-radio span {
  padding-top: 1px;
}

.fc-textarea {
  width: 100%;
  min-height: 118px;
  border: 1px solid var(--fc-border);
  background: #f7f8f9;
  border-radius: 12px;
  padding: 16px 20px;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--fc-ink);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.fc-textarea:focus {
  border-color: var(--fc-blue);
  background: #fff;
}

.fc-survey__card .fc-btn {
  margin-top: 18px;
}

/* ------------------------------------------------------------ how it works */
.fc-step {
  padding: 41px 21px 30px;
  text-align: center;
  min-height: 295px;
}

.fc-step__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-blue);
  font-size: 2.1rem;
  line-height: 1;
}

.fc-step h3 {
  margin-bottom: 20px;
}

.fc-step p {
  margin: 0;
  color: var(--fc-body);
  line-height: 1.65;
}

/* ------------------------------------------------------------------ FAQ -- */
.fc-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 588px) minmax(0, 730px);
  gap: 42px;
  align-items: center;
}

.fc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 50px;
}

.fc-acc {
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--fc-border);
  overflow: hidden;
}

.fc-acc__btn {
  width: 100%;
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 31px;
  border: 0;
  background: transparent;
  color: var(--fc-ink);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.fc-acc__btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.fc-acc.is-open {
  border-color: transparent;
}

.fc-acc.is-open .fc-acc__btn {
  background: var(--fc-blue);
  color: #fff;
  border-radius: 12px;
}

.fc-acc.is-open .fc-acc__btn i {
  transform: rotate(180deg);
}

.fc-acc__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-acc__panel p {
  margin: 0;
  padding: 22px 31px 0;
  color: var(--fc-body);
  line-height: 1.61;
}

/* --------------------------------------------------------- testimonials -- */
.fc-quote {
  padding: 31px;
  min-height: 285px;
  display: flex;
  flex-direction: column;
}

.fc-quote__mark {
  width: 49px;
  height: 36px;
  display: block;
  margin-bottom: 18px;
}

.fc-quote p {
  margin: 0 0 auto;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--fc-ink-soft);
}

.fc-quote__by {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}

.fc-quote__by img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.fc-quote__by strong {
  display: block;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

.fc-quote__by span {
  display: block;
  font-size: 1rem;
  color: var(--fc-body);
}

/* ------------------------------------------------------------- final CTA - */
.fc-final {
  background: #fff;
  border-radius: var(--fc-radius-lg);
  box-shadow: var(--fc-shadow-sm);
  border: 1px solid var(--fc-border);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 556px;
  gap: 88px;
  align-items: center;
  padding: 0 40px 0 62px;
  overflow: hidden;
}

.fc-final__copy {
  padding-block: 51px;
}

.fc-final__copy .fc-h2 {
  max-width: 620px;
}

.fc-final__copy .fc-hero__stores {
  margin-top: 30px;
}

/* ---------------------------------------------------------------- footer - */
.fc-footer {
  margin-top: 50px;
  background: var(--fc-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 0;
}

/* Figma frame 184:1362 - logo, then the contact/newsletter pair 343px to its
   right. Nesting matches the comp: 200 | 343 gap | (298 | 72 gap | 447). */
.fc-footer__grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 343px;
  align-items: start;
}

.fc-footer__cols {
  display: grid;
  grid-template-columns: minmax(0, 298px) minmax(0, 447px);
  gap: 72px;
  align-items: start;
}

.fc-footer__brand img {
  width: 200px;
  height: 160px;
  object-fit: contain;
}

.fc-footer h2 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}

.fc-footer p {
  margin: 0;
  line-height: 1.61;
}

.fc-footer__contact {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.fc-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fc-footer__contact i {
  color: var(--fc-blue);
  font-size: 0.95rem;
  margin-top: 4px;
  flex: 0 0 auto;
}

.fc-footer__contact a:hover {
  color: #fff;
}

.fc-footer__bottom {
  margin-top: 57px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.fc-social {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fc-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fc-social a:hover {
  background: var(--fc-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------------------------------------------------- scroll reveal FX --- *
 * Scoped to .has-js (set by an inline script in <head>) so the page still
 * renders fully when scripting is unavailable or the bundle fails to load. */
.has-js .fc-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.has-js .fc-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}


/* =========================================================== v2 additions ==
   Added with the content rebuild: the eight-up feature grid, the ownership
   line, the safety disclaimer and the legal / partner page shells.
   ========================================================================== */

/* The hero headline is a statement now, so it gets the tighter setting a
   short three-line shout needs. */
.fc-hero__title--shout {
  letter-spacing: -0.03em;
  line-height: 1.04;
}

/* Eight cards want four columns, not the two the feature grid used to run.
   Steps down to 2 on tablet and 1 on mobile alongside the other grids. */
.fc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.fc-about__owner {
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--fc-body);
  font-size: 0.9375rem;
}

.fc-about__owner strong {
  color: var(--fc-ink);
  font-weight: 600;
}

/* ------------------------------------------------- safety disclaimer note -- */
/* Deliberately loud: the client asked for the emergency-service caveat to be
   visible on the page, not buried in the terms. */
.fc-disclaimer {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid #f0d8a8;
  border-left: 5px solid #e0a63c;
  border-radius: var(--fc-radius);
  background: #fdf7ec;
}

.fc-disclaimer i {
  flex: none;
  margin-top: 2px;
  font-size: 1.5rem;
  line-height: 1;
  color: #b9781a;
}

.fc-disclaimer h3 {
  margin: 0 0 8px;
  color: #7a4d09;
}

.fc-disclaimer p {
  margin: 0;
  color: #6b5222;
  line-height: 1.61;
}

.fc-safety__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

/* --------------------------------------------------------- partners page -- */
.fc-partner__cta {
  margin-top: 34px;
}

.fc-partner__points {
  margin-block: 26px 30px;
}

/* ------------------------------------------------ legal / guidelines pages -- */
.fc-legal {
  padding: 150px 0 60px; /* clears the fixed nav */
}

.fc-legal__head {
  max-width: 780px;
}

.fc-legal__title {
  margin: 22px 0 18px;
}

.fc-legal__updated {
  margin: 18px 0 0;
  font-size: 0.875rem;
  color: var(--fc-body);
}

.fc-legal__toc {
  max-width: 780px;
  margin: 46px 0;
  padding: 26px 30px;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  background: var(--fc-card);
  box-shadow: var(--fc-shadow-sm);
}

.fc-legal__toc h2 {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fc-body);
}

.fc-legal__toc ol {
  margin: 0;
  padding-left: 1.2em;
  columns: 2;
  column-gap: 40px;
}

.fc-legal__toc li {
  margin-bottom: 8px;
  break-inside: avoid;
  color: var(--fc-body);
}

.fc-legal__toc a {
  color: var(--fc-ink);
  text-decoration: none;
}

.fc-legal__toc a:hover {
  color: var(--fc-blue);
  text-decoration: underline;
}

.fc-legal__body {
  max-width: 780px;
}

.fc-legal__section {
  padding-top: 38px;
  scroll-margin-top: 120px; /* the fixed nav must not cover a jumped-to heading */
}

.fc-legal__section + .fc-legal__section {
  border-top: 1px solid var(--fc-border);
}

.fc-legal__section h2 {
  margin: 0 0 16px;
}

.fc-legal__section h2 span {
  color: var(--fc-blue);
  margin-right: 6px;
}

.fc-legal__section h3 {
  margin: 26px 0 10px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.fc-legal__section p,
.fc-legal__section li {
  color: var(--fc-body);
  line-height: 1.72;
}

.fc-legal__section p {
  margin: 0 0 14px;
}

.fc-legal__section ul {
  margin: 0 0 14px;
  padding-left: 1.25em;
}

.fc-legal__section li {
  margin-bottom: 8px;
}

.fc-legal__section strong {
  color: var(--fc-ink);
}

/* ------------------------------------------------------------ footer legal -- */
.fc-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0 0 26px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.fc-footer__legal a {
  color: var(--fc-body-light);
  font-size: 0.9375rem;
  text-decoration: none;
}

.fc-footer__legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.fc-footer__owner {
  display: block;
  margin-top: 4px;
}

/* A solid white button, for the blue hero where --primary would disappear. */
.fc-btn--on-blue {
  background: #fff;
  color: var(--fc-blue);
}

.fc-btn--on-blue:hover {
  background: #fff;
  color: var(--fc-blue-700);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
