/* FieldLine public landing — navy ops, teal accent */
:root {
  --fl-navy: #0B1F3A;
  --fl-navy-deep: #061222;
  --fl-ink: #E8EEF4;
  --fl-muted: rgba(232, 238, 244, 0.68);
  --fl-accent: #1FA7A0;
  --fl-accent-bright: #2BC4BC;
  --fl-accent-dim: rgba(31, 167, 160, 0.16);
  --fl-line: rgba(232, 238, 244, 0.12);
  --fl-max: 1120px;
  --fl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.fl-landing {
  margin: 0;
  min-height: 100vh;
  color: var(--fl-ink);
  font-family: "Figtree", system-ui, sans-serif;
  background: var(--fl-navy-deep);
  -webkit-font-smoothing: antialiased;
}

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

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

/* -------------------------------------------------------------------------- */
/* Shell / atmosphere                                                          */
/* -------------------------------------------------------------------------- */
.fl-land-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 70% 10%, rgba(31, 167, 160, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(11, 31, 58, 0.9), transparent 50%),
    linear-gradient(165deg, #0B1F3A 0%, #061222 48%, #0A1A2E 100%);
}

.fl-land-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(232, 238, 244, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 238, 244, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}

.fl-land-wrap {
  position: relative;
  z-index: 1;
}

.fl-land-inner {
  width: min(100% - 2.5rem, var(--fl-max));
  margin-inline: auto;
  padding-bottom: 1rem;
}

/* -------------------------------------------------------------------------- */
/* Nav                                                                         */
/* -------------------------------------------------------------------------- */
.fl-land-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 0;
}

.fl-land-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.fl-land-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.fl-land-brand span {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.fl-land-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */
.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--fl-ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fl-btn:hover {
  transform: translateY(-1px);
}

.fl-btn-primary {
  background: var(--fl-accent);
  color: #06201e;
}

.fl-btn-primary:hover {
  background: var(--fl-accent-bright);
}

.fl-btn-ghost {
  background: transparent;
  border-color: var(--fl-line);
  color: var(--fl-ink);
}

.fl-btn-ghost:hover {
  border-color: rgba(232, 238, 244, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.fl-btn-solid {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--fl-line);
  color: var(--fl-ink);
}

.fl-btn-solid:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.fl-land-hero {
  padding: clamp(2.5rem, 8vh, 5rem) 0 clamp(2rem, 5vh, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fl-land-hero-copy {
  max-width: 38rem;
}

.fl-land-kicker {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-accent-bright);
}

.fl-land-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.fl-land-hero h1 em {
  font-style: normal;
  color: var(--fl-accent-bright);
}

.fl-land-lead {
  margin: 1.15rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: var(--fl-muted);
}

.fl-land-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.fl-land-hero-note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(232, 238, 244, 0.48);
}

/* -------------------------------------------------------------------------- */
/* Demo                                                                        */
/* -------------------------------------------------------------------------- */
.fl-land-demo {
  padding: 0 0 4.5rem;
}

.fl-land-demo-head {
  margin-bottom: 1.25rem;
}

.fl-land-demo-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.fl-land-demo-head p {
  margin: 0.45rem 0 0;
  color: var(--fl-muted);
  max-width: 36rem;
  line-height: 1.5;
}

.fl-land-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--fl-line);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(31, 167, 160, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.45);
}

.fl-land-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fl-land-video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(31, 167, 160, 0.28), transparent 62%),
    linear-gradient(165deg, #0d2440 0%, #061222 100%);
}

.fl-land-video-play:hover .fl-land-play-icon,
.fl-land-video-play:focus-visible .fl-land-play-icon {
  transform: scale(1.06);
  background: var(--fl-accent-bright);
}

.fl-land-play-icon {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: var(--fl-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--fl-ease), background 0.2s ease;
}

.fl-land-play-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 1.45rem 0 0 1.6rem;
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.15rem;
  border-color: transparent transparent transparent #06201e;
}

.fl-land-play-label {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fl-land-video-play.is-loading {
  cursor: wait;
}

.fl-land-video-play.is-loading .fl-land-play-icon {
  background: transparent;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--fl-accent-bright);
  box-shadow: none;
  animation: fl-land-spin 0.7s linear infinite;
}

.fl-land-video-play.is-loading .fl-land-play-icon::after {
  content: none;
}

.fl-land-video.is-playing .fl-land-video-play {
  opacity: 0;
  pointer-events: none;
}

@keyframes fl-land-spin {
  to { transform: rotate(360deg); }
}

/* -------------------------------------------------------------------------- */
/* Guard app demo (inside close section)                                       */
/* -------------------------------------------------------------------------- */
.fl-land-app-card {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 16px;
  border: 1px solid rgba(31, 167, 160, 0.3);
  background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .fl-land-app-card {
    grid-template-columns: 140px 1fr;
    gap: 1.75rem;
    align-items: center;
  }
}

.fl-land-app-phone {
  width: 130px;
  margin-inline: auto;
  aspect-ratio: 9 / 17;
  border-radius: 22px;
  border: 2px solid rgba(232, 238, 244, 0.12);
  background: linear-gradient(170deg, #0d2440, #071525);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.fl-land-app-phone-notch {
  width: 60px;
  height: 16px;
  border-radius: 0 0 10px 10px;
  background: rgba(0, 0, 0, 0.6);
  margin-bottom: auto;
}

.fl-land-app-phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding-bottom: 1.5rem;
  color: var(--fl-accent-bright);
}

.fl-land-app-phone-screen span {
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fl-land-app-info h3 {
  margin: 0 0 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.fl-land-app-desc {
  margin: 0 0 0;
  color: var(--fl-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 30rem;
}

.fl-land-app-creds {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--fl-line);
}

.fl-land-app-creds-label {
  margin: 0 0 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fl-accent-bright);
}

.fl-land-app-creds-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3rem 0;
}

.fl-land-app-creds-row + .fl-land-app-creds-row {
  border-top: 1px solid var(--fl-line);
}

.fl-land-app-creds-row span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fl-muted);
  min-width: 5rem;
}

.fl-land-app-creds-row code {
  font-family: "Figtree", monospace;
  font-size: 0.92rem;
  color: var(--fl-ink);
  letter-spacing: 0.02em;
  user-select: all;
}

.fl-land-app-info .fl-land-ctas {
  margin-top: 1rem;
}

.fl-land-app-note {
  font-size: 0.8rem;
  color: rgba(232, 238, 244, 0.45);
  align-self: center;
}

@media (max-width: 640px) {
  .fl-land-app-phone {
    width: 110px;
  }
}

/* -------------------------------------------------------------------------- */
/* Capabilities                                                                */
/* -------------------------------------------------------------------------- */
.fl-land-caps {
  padding: 0 0 5rem;
}

.fl-land-caps-head {
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.fl-land-caps-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
}

.fl-land-caps-head p {
  margin: 0.5rem 0 0;
  color: var(--fl-muted);
  line-height: 1.5;
}

.fl-land-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--fl-line);
}

.fl-land-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--fl-line);
  align-items: start;
}

.fl-land-list strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.fl-land-list span {
  color: var(--fl-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fl-land-num {
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fl-accent-bright);
  padding-top: 0.15rem;
}

/* -------------------------------------------------------------------------- */
/* Licensing model                                                             */
/* -------------------------------------------------------------------------- */
.fl-land-model {
  padding: 0 0 4.5rem;
}

.fl-land-model-head {
  margin-bottom: 1.5rem;
  max-width: 38rem;
}

.fl-land-model-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
}

.fl-land-model-head p {
  margin: 0.55rem 0 0;
  color: var(--fl-muted);
  line-height: 1.55;
}

.fl-land-packages {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.25rem;
}

@media (min-width: 768px) {
  .fl-land-packages {
    grid-template-columns: 1.15fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
}

.fl-land-package {
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 16px;
  border: 1px solid var(--fl-line);
  background: rgba(255, 255, 255, 0.03);
}

.fl-land-package--featured {
  border-color: rgba(31, 167, 160, 0.45);
  background:
    linear-gradient(160deg, rgba(31, 167, 160, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.04);
}

.fl-land-package-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fl-accent-bright);
}

.fl-land-package h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.fl-land-package-price {
  margin: 0.75rem 0 1rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.fl-land-package-price strong {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fl-land-package-price span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--fl-muted);
  font-weight: 400;
}

.fl-land-package ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.fl-land-package li {
  position: relative;
  padding-left: 1rem;
  color: var(--fl-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.fl-land-package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--fl-accent);
}

.fl-land-process {
  margin: 0 0 2rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--fl-line);
}

.fl-land-process-title {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.fl-land-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .fl-land-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.fl-land-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--fl-line);
  background: rgba(0, 0, 0, 0.15);
}

.fl-land-step-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  background: var(--fl-accent-dim);
  color: var(--fl-accent-bright);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.fl-land-steps strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.fl-land-steps span {
  display: block;
  color: var(--fl-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.fl-land-model-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--fl-line);
}

.fl-land-model-points li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--fl-line);
}

@media (min-width: 768px) {
  .fl-land-model-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.75rem;
    border-top: none;
  }

  .fl-land-model-points li {
    border-bottom: none;
    border-top: 1px solid var(--fl-line);
    padding-top: 1.15rem;
  }
}

.fl-land-model-points strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.fl-land-model-points span {
  display: block;
  color: var(--fl-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.fl-land-price-note {
  margin: 1.35rem 0 0;
  font-size: 0.92rem;
  color: rgba(232, 238, 244, 0.55);
  line-height: 1.5;
  max-width: 40rem;
}

.fl-land-close-sub {
  margin: 0.85rem 0 0 !important;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fl-accent-bright) !important;
}

/* -------------------------------------------------------------------------- */
/* Close                                                                       */
/* -------------------------------------------------------------------------- */
.fl-land-close {
  padding: 0 0 4.5rem;
}

.fl-land-close-panel {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 20px;
  border: 1px solid var(--fl-line);
  background:
    linear-gradient(135deg, rgba(31, 167, 160, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.03);
}

.fl-land-close-panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  max-width: 22rem;
}

.fl-land-close-panel p {
  margin: 0.65rem 0 0;
  color: var(--fl-muted);
  max-width: 30rem;
  line-height: 1.5;
}

.fl-land-close-panel .fl-land-ctas {
  margin-top: 1.35rem;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */
.fl-land-footer {
  padding: 0 0 2.25rem;
  border-top: 1px solid var(--fl-line);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(232, 238, 244, 0.45);
  font-size: 0.85rem;
}

.fl-land-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fl-land-footer-brand > span:first-child {
  color: rgba(232, 238, 244, 0.72);
  font-weight: 600;
}

.fl-land-footer-tag {
  font-size: 0.8rem;
  color: rgba(232, 238, 244, 0.4);
}

.fl-land-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.fl-land-footer a:hover {
  color: var(--fl-ink);
}

.fl-land-founder {
  margin: 1.15rem 0 0 !important;
  max-width: 34rem !important;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(232, 238, 244, 0.55) !important;
}

.fl-land-founder a {
  color: rgba(232, 238, 244, 0.85);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.fl-land-founder a:hover {
  color: var(--fl-accent-bright);
}

/* -------------------------------------------------------------------------- */
/* Own vs rent / fit / FAQ / enquire form                                      */
/* -------------------------------------------------------------------------- */
.fl-land-own,
.fl-land-fit,
.fl-land-faq {
  padding: 0 0 4.5rem;
}

.fl-land-own-head,
.fl-land-fit-head,
.fl-land-faq-head {
  margin-bottom: 1.35rem;
  max-width: 38rem;
}

.fl-land-own-head h2,
.fl-land-fit-head h2,
.fl-land-faq-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
}

.fl-land-own-head p,
.fl-land-fit-head p {
  margin: 0.55rem 0 0;
  color: var(--fl-muted);
  line-height: 1.55;
}

.fl-land-own-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .fl-land-own-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.fl-land-own-card {
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 16px;
  border: 1px solid var(--fl-line);
  background: rgba(255, 255, 255, 0.03);
}

.fl-land-own-card--own {
  border-color: rgba(31, 167, 160, 0.45);
  background:
    linear-gradient(160deg, rgba(31, 167, 160, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.04);
}

.fl-land-own-card h3 {
  margin: 0 0 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.fl-land-own-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.fl-land-own-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--fl-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.fl-land-own-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--fl-accent);
}

.fl-land-fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--fl-line);
}

.fl-land-fit-list li {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--fl-line);
  color: var(--fl-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.fl-land-faq-list {
  display: grid;
  gap: 0.65rem;
}

.fl-land-faq-item {
  border: 1px solid var(--fl-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0 1.1rem;
}

.fl-land-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 1rem 0;
}

.fl-land-faq-item summary::after {
  content: "+";
  color: var(--fl-accent-bright);
  font-weight: 700;
}

.fl-land-faq-item[open] summary::after {
  content: "–";
}

.fl-land-faq-item summary::-webkit-details-marker {
  display: none;
}

.fl-land-faq-item p {
  margin: 0 0 1.05rem;
  color: var(--fl-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 40rem;
}

.fl-land-alert {
  margin: 1.15rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(31, 167, 160, 0.16);
  color: var(--fl-ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.fl-land-alert--err {
  background: rgba(220, 80, 80, 0.18);
}

.fl-land-form {
  margin-top: 1.35rem;
}

.fl-land-form-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .fl-land-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fl-land-form label,
.fl-land-form-note {
  display: grid;
  gap: 0.35rem;
}

.fl-land-form label span,
.fl-land-form-note span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.fl-land-form-note {
  margin-top: 0.85rem;
}

.fl-land-form-note span em {
  font-style: normal;
  font-weight: 400;
  color: var(--fl-muted);
}

.fl-land-form input,
.fl-land-form select,
.fl-land-form textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--fl-line);
  background: rgba(0, 0, 0, 0.25);
  color: var(--fl-ink);
  font-family: inherit;
  font-size: 0.95rem;
}

.fl-land-form input,
.fl-land-form textarea {
  color-scheme: dark;
}

.fl-land-form select {
  color-scheme: light;
}

.fl-land-form select option {
  background-color: #ffffff;
  color: #0b1f3a;
}

.fl-land-form select option:disabled {
  color: #6b7c8d;
  background-color: #ffffff;
}

button.fl-btn {
  appearance: none;
}

.fl-land-form textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.fl-land-form input:focus,
.fl-land-form select:focus,
.fl-land-form textarea:focus {
  outline: 2px solid rgba(31, 167, 160, 0.55);
  outline-offset: 1px;
  border-color: rgba(31, 167, 160, 0.5);
}

.fl-land-form label em,
.fl-land-form-note em:not(:first-child) {
  font-style: normal;
  font-size: 0.8rem;
  color: #f0a8a8;
}

.fl-land-form .fl-land-ctas {
  margin-top: 1.15rem;
}

.fl-btn-whatsapp {
  background: #25d366;
  color: #06201e;
}

.fl-btn-whatsapp:hover {
  background: #34e074;
}

.fl-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.fl-wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--fl-ease), background 0.2s ease;
}

.fl-wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  background: #34e074;
}

/* -------------------------------------------------------------------------- */
/* Motion                                                                      */
/* -------------------------------------------------------------------------- */
.fl-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--fl-ease), transform 0.7s var(--fl-ease);
}

.fl-reveal.is-in {
  opacity: 1;
  transform: none;
}

.fl-reveal-delay-1 { transition-delay: 0.08s; }
.fl-reveal-delay-2 { transition-delay: 0.16s; }
.fl-reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .fl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .fl-land-inner {
    width: min(100% - 1.5rem, var(--fl-max));
  }

  .fl-land-hero {
    min-height: auto;
    padding-top: 2.75rem;
  }

  .fl-land-nav-actions .fl-btn-nav-hide-sm {
    display: none;
  }

  .fl-land-video {
    border-radius: 12px;
  }
}
