/*
  FPW Conversion Landing Page Mockup
  Scope: .fpw-landing-page
  Intent: standalone design handoff for Codex wiring into FloatPlanWizard.
*/

:root {
  --fpw-navy-950: #031026;
  --fpw-navy-900: #061a37;
  --fpw-navy-850: #082043;
  --fpw-navy-800: #0a2854;
  --fpw-blue-700: #1257c8;
  --fpw-blue-600: #1768e5;
  --fpw-blue-100: #e9f3ff;
  --fpw-gold-500: #ffc533;
  --fpw-gold-600: #f4a900;
  --fpw-green-600: #2c965b;
  --fpw-green-100: #eaf8ef;
  --fpw-ink: #092246;
  --fpw-muted: #5c6f89;
  --fpw-line: #d8e3ef;
  --fpw-panel: #ffffff;
  --fpw-soft: #f5f9fe;
  --fpw-radius-lg: 18px;
  --fpw-radius-md: 12px;
  --fpw-shadow-soft: 0 18px 50px rgba(8, 32, 67, .14);
  --fpw-shadow-card: 0 10px 25px rgba(8, 32, 67, .09);
  --fpw-container: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fpw-ink);
  background: #fff;
}

.fpw-landing-page {
  min-height: 100vh;
  background: #fff;
  color: var(--fpw-ink);
}

.fpw-landing-page a {
  color: inherit;
  text-decoration: none;
}

.fpw-container {
  width: min(var(--fpw-container), calc(100% - 44px));
  margin: 0 auto;
}

.fpw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

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

.fpw-btn-primary {
  background: linear-gradient(180deg, var(--fpw-gold-500), var(--fpw-gold-600));
  color: #071529;
  box-shadow: 0 12px 28px rgba(255, 197, 51, .26);
}

.fpw-btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 197, 51, .33);
}

.fpw-btn-secondary {
  color: #fff;
  border-color: rgba(255, 197, 51, .72);
  background: rgba(4, 17, 39, .3);
}

.fpw-btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
}

.fpw-btn-outline {
  color: var(--fpw-blue-700);
  border-color: #b7d5f6;
  background: #fff;
}

.fpw-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: block;
}

.fpw-site-header {
  position: relative;
  z-index: 10;
  background: rgba(3, 16, 38, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.fpw-nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.fpw-logo-wrap {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
}

.fpw-logo-wrap img {
  width: 178px;
  height: 56px;
  display: block;
}

.fpw-nav-links,
.fpw-nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.fpw-nav-links a,
.fpw-login-link {
  color: rgba(255, 255, 255, .96);
  font-size: 15px;
  font-weight: 780;
  white-space: nowrap;
}

.fpw-login-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.fpw-header-cta {
  min-height: 42px;
  padding-inline: 19px;
}

.fpw-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: #fff;
  background: #04152f;
}

.fpw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 15, 33, 0.94) 0%, rgba(4, 22, 48, 0.88) 42%, rgba(5, 34, 75, 0.78) 100%),
    url('../images/home/hero-nautical-command-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.fpw-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 44px;
  align-items: center;
  padding: 34px 0 26px;
}

@media (max-width: 768px) {
  .fpw-hero::before {
    background-position: 32% center;
  }
}

.fpw-hero-copy h1 {
  margin: 0 0 16px;
  max-width: 680px;
  font-size: clamp(38px, 4.1vw, 48px);
  line-height: 1.04;
  letter-spacing: -.052em;
  font-weight: 900;
}

.fpw-hero-copy p {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, .94);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 560;
}

.fpw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 26px;
}

.fpw-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
  max-width: 660px;
}

.fpw-trust-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 680;
}

.fpw-check-dot {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--fpw-gold-500);
  color: var(--fpw-gold-500);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.fpw-hero-disclaimer {
  margin-top: 16px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 13px !important;
  max-width: 660px !important;
}

.fpw-trip-brief {
  background: rgba(4, 16, 36, .7);
  border: 1px solid rgba(175, 209, 245, .33);
  border-radius: 13px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  padding: 14px;
  backdrop-filter: blur(14px);
}

.fpw-trip-brief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 5px 10px;
}

.fpw-trip-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
}

.fpw-status-pill,
.fpw-row-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #2ca964, #237c4b);
  font-size: 12px;
  font-weight: 900;
}

.fpw-trip-row {
  display: grid;
  grid-template-columns: 33px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.fpw-trip-row + .fpw-trip-row { margin-top: 7px; }

.fpw-trip-row svg {
  color: var(--fpw-gold-500);
}

.fpw-trip-label {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.fpw-trip-value {
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.fpw-copy-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.58);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.fpw-brief-cta {
  width: 100%;
  margin-top: 11px;
  min-height: 46px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(4, 16, 36, .42);
}

.fpw-section-title {
  margin: 0;
  text-align: center;
  color: var(--fpw-ink);
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.035em;
}

.fpw-section-intro {
  width: min(760px, 100%);
  margin: 10px auto 0;
  text-align: center;
  color: #173a66;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 650;
}

.fpw-steps {
  scroll-margin-top: 150px;
  padding: 34px 0 30px;
  background: #fff;
}

.fpw-steps h2 {
  margin-bottom: 18px;
}

.fpw-step-row {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 870px;
  margin: 0 auto;
}

.fpw-step-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
}

.fpw-step-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #e6f2ff, #cfe5fb);
  color: var(--fpw-blue-700);
}

.fpw-step-icon .fpw-icon {
  width: 38px;
  height: 38px;
}

.fpw-step-body {
  position: relative;
}

.fpw-step-number {
  position: absolute;
  left: -40px;
  top: -5px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--fpw-navy-900);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.fpw-step-body h3 {
  margin: 0 0 5px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.025em;
}

.fpw-step-body p {
  margin: 0;
  color: #193a65;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 680;
}

.fpw-step-dash {
  height: 1px;
  background: repeating-linear-gradient(90deg, #bdd2e8 0 8px, transparent 8px 16px);
}

.fpw-product-preview {
  padding: 24px 0 44px;
  background: #fff;
}

.fpw-preview-shell {
  overflow: hidden;
  border: 1px solid var(--fpw-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--fpw-shadow-card);
  color: var(--fpw-ink);
}

.fpw-preview-head {
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--fpw-line);
  text-align: center;
}

.fpw-preview-eyebrow {
  margin: 0 0 10px;
  color: var(--fpw-blue-700);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fpw-preview-head .fpw-section-title {
  max-width: 780px;
  margin: 0 auto;
  color: var(--fpw-ink);
}

.fpw-preview-intro {
  max-width: 760px;
  margin: 12px auto 0;
  color: #294c72;
}

.fpw-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.fpw-tab {
  appearance: none;
  border: 1px solid var(--fpw-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  min-height: 50px;
  padding: 0 16px;
  color: #14345c;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
}

.fpw-tab:hover,
.fpw-tab:focus-visible {
  border-color: #b7d5f6;
  background: var(--fpw-blue-100);
  color: var(--fpw-blue-700);
  outline: 3px solid rgba(23,104,229,.18);
  outline-offset: 2px;
}

.fpw-tab[aria-selected="true"] {
  border-color: transparent;
  background: linear-gradient(180deg, var(--fpw-blue-600), var(--fpw-blue-700));
  color: #fff;
  box-shadow: 0 10px 22px rgba(23,104,229,.18);
}

.fpw-preview-body {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, .95fr);
  gap: 22px;
  padding: 24px;
}

.fpw-preview-visual {
  min-width: 0;
}

.fpw-preview-browser {
  overflow: hidden;
  border: 1px solid var(--fpw-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8,32,67,.08);
}

.fpw-preview-browser-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid var(--fpw-line);
  background: var(--fpw-soft);
}

.fpw-preview-browser-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #b7d5f6;
}

.fpw-preview-browser-chrome span:first-child { background: #ff7b54; }
.fpw-preview-browser-chrome span:nth-child(2) { background: #f7c948; }
.fpw-preview-browser-chrome span:nth-child(3) { background: #35d07f; }

.fpw-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 760;
  object-fit: cover;
  background: #eef5fc;
}

.fpw-preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px 30px;
  border: 1px solid var(--fpw-line);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 28px rgba(8,32,67,.06);
}

.fpw-preview-copy h3 {
  margin: 0 0 12px;
  color: var(--fpw-ink);
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 950;
}

.fpw-preview-copy p {
  margin: 0 0 20px;
  color: #294c72;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 650;
}

.fpw-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.fpw-check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #14345c;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 780;
}

.fpw-check-list .fpw-check-dot {
  width: 16px;
  height: 16px;
  border-color: rgba(23,104,229,.36);
  background: var(--fpw-blue-100);
  color: var(--fpw-blue-700);
  font-size: 10px;
}

.fpw-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  width: fit-content;
  padding: 0 18px;
  border: 1px solid rgba(244,169,0,.66);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--fpw-gold-500), var(--fpw-gold-600));
  color: #071529;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255,197,51,.26);
}

.fpw-product-link:hover,
.fpw-product-link:focus-visible {
  background: linear-gradient(180deg, #ffd867, var(--fpw-gold-600));
  color: #071529;
  box-shadow: 0 18px 34px rgba(255,197,51,.33);
}

.fpw-compare {
  scroll-margin-top: 150px;
  padding: 24px 0 44px;
  background: #fff;
}

.fpw-compare h2 { margin: 10px 0 0; }

.fpw-compare-intro {
  max-width: 780px;
}

.fpw-compare-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(1040px, 100%);
  margin: 24px auto 0;
}

.fpw-compare-card {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--fpw-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8,32,67,.08);
}

.fpw-compare-card-muted {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.fpw-compare-card-strong {
  color: #fff;
  border-color: rgba(255,193,40,.46);
  background:
    radial-gradient(circle at 86% 8%, rgba(28, 113, 214, .32), transparent 34%),
    linear-gradient(180deg, #08224a, #031026);
  box-shadow: 0 18px 42px rgba(3,16,38,.18);
}

.fpw-compare-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.025em;
}

.fpw-compare-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fpw-compare-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: #14345c;
  font-size: 16px;
  line-height: 1.34;
  font-weight: 760;
}

.fpw-compare-card-strong li {
  color: rgba(255,255,255,.94);
}

.fpw-x,
.fpw-yes {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.fpw-x {
  border: 1px solid #aeb8c4;
  color: #7d8794;
  background: #fff;
}

.fpw-yes {
  border: 1px solid #74c88c;
  color: #2b9a54;
  background: #fff;
}

.fpw-compare-card-strong .fpw-yes {
  border-color: rgba(255,193,40,.86);
  color: #08224a;
  background: var(--fpw-gold-500);
}

.fpw-use-cases {
  padding: 18px 0 38px;
  background: #fff;
}

.fpw-use-cases h2 { margin: 10px 0 0; }

.fpw-use-intro {
  max-width: 790px;
}

.fpw-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.fpw-use-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--fpw-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8,32,67,.06);
}

.fpw-use-card svg {
  width: 40px;
  height: 40px;
  justify-self: center;
  color: #0c56c5;
}

.fpw-use-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.02em;
}

.fpw-use-card p {
  margin: 0;
  color: #15385f;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 680;
}

.fpw-trust-band {
  padding: 34px 0 40px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 45%, rgba(29, 117, 217, .21), transparent 30%),
    linear-gradient(90deg, #031026, #08224a);
}

.fpw-trust-band .fpw-container {
  padding-top: 0;
  padding-bottom: 0;
}

.fpw-trust-band h2 {
  color: #fff;
  margin-bottom: 0;
}

.fpw-trust-intro {
  max-width: 840px;
  color: rgba(255,255,255,.86);
}

.fpw-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.fpw-trust-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: start;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.045);
}

.fpw-trust-card svg {
  width: 38px;
  height: 38px;
  justify-self: center;
  color: var(--fpw-gold-500);
}

.fpw-trust-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 950;
}

.fpw-trust-card p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.38;
  font-weight: 640;
}

.fpw-pricing {
  padding: 42px 0 46px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.fpw-pricing h2 {
  max-width: 880px;
  margin: 0 auto;
}

.fpw-pricing-intro {
  max-width: 790px;
}

.fpw-price-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 1120px;
  margin: 28px auto 0;
}

.fpw-price-card {
  position: relative;
  display: flex;
  min-height: 386px;
  flex-direction: column;
  padding: 27px 22px 22px;
  background: #fff;
  border: 1px solid var(--fpw-line);
  border-radius: 10px;
  box-shadow: var(--fpw-shadow-card);
  text-align: left;
}

.fpw-price-card-free {
  border-color: rgba(255,193,40,.72);
  background: linear-gradient(180deg, #fffdf7, #fff);
  box-shadow: 0 18px 42px rgba(8,32,67,.11);
}

.fpw-price-card.popular {
  border-color: #b5cbe5;
  transform: translateY(-2px);
}

.fpw-price-ribbon {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -23px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px 10px 0 0;
  background: var(--fpw-navy-900);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .06em;
}

.fpw-price-card h3 {
  margin: 0 0 9px;
  color: #075bd8;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.035em;
}

.fpw-price-card p,
.fpw-price-card li {
  color: #12365f;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 680;
}

.fpw-price-card p {
  margin: 0 0 16px;
}

.fpw-price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.fpw-price-card li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 9px;
  align-items: start;
}

.fpw-price-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: .58em;
  border-radius: 999px;
  background: #0c56c5;
}

.fpw-price-card-free li::before,
.fpw-price-card.popular li::before {
  background: var(--fpw-gold-500);
}

.fpw-price {
  margin: 8px 0 12px;
  color: #092246;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.fpw-price span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.fpw-price-note {
  min-height: 18px;
  margin: 0 0 8px !important;
  color: #345a82 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.fpw-card-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid #b9cce3;
  border-radius: 7px;
  color: #08244c;
  background: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 950;
  text-align: center;
}

.fpw-card-link:hover,
.fpw-card-link:focus-visible {
  border-color: #1768e5;
  outline: none;
}

.fpw-price-card-free .fpw-card-link,
.fpw-price-card.popular .fpw-card-link {
  border-color: transparent;
  color: #061a38;
  background: var(--fpw-gold-500);
  box-shadow: 0 10px 22px rgba(255,193,40,.2);
}

.fpw-sample-card svg {
  color: #89a6c3;
  margin-bottom: 10px;
}

.fpw-faq {
  padding: 34px 0 44px;
  background: #fff;
}

.fpw-faq h2 { margin: 0; }

.fpw-faq-intro {
  max-width: 840px;
}

.fpw-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  max-width: 1080px;
  margin: 24px auto 0;
}

.fpw-faq-item {
  border: 1px solid var(--fpw-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8,32,67,.04);
}

.fpw-faq-question {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: #fff;
  color: #102f57;
  font: inherit;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 880;
  text-align: left;
  cursor: pointer;
}

.fpw-faq-question:focus-visible {
  outline: 3px solid rgba(23,104,229,.28);
  outline-offset: -3px;
}

.fpw-faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: #294c72;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 620;
}

.fpw-faq-item.is-open .fpw-faq-answer { display: block; }
.fpw-faq-item.is-open .fpw-faq-question svg { transform: rotate(180deg); }

.fpw-final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 42px 0 44px;
  background:
    radial-gradient(circle at 86% 50%, rgba(44, 122, 204, .28), transparent 34%),
    linear-gradient(90deg, #031026, #08224a);
}

.fpw-final-cta::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 280px;
  height: 200px;
  background: url('../images/landing/footer-lighthouse.svg') left bottom / contain no-repeat;
  opacity: .62;
  pointer-events: none;
}

.fpw-final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.fpw-final-copy {
  padding-left: 78px;
}

.fpw-final-copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 950;
}

.fpw-final-copy p {
  margin: 0;
  max-width: 540px;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.4;
}

.fpw-final-action {
  text-align: center;
}

.fpw-final-action .fpw-btn {
  min-width: 290px;
}

.fpw-final-action p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 650;
}

@media (max-width: 1050px) {
  .fpw-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 0 34px;
  }

  .fpw-trip-brief {
    max-width: 560px;
  }

  .fpw-nav-links { display: none; }

  .fpw-preview-body {
    grid-template-columns: 1fr;
  }

  .fpw-preview-copy {
    border: 1px solid var(--fpw-line);
  }

  .fpw-use-grid,
  .fpw-trust-grid,
  .fpw-price-grid,
  .fpw-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fpw-use-grid { border: 0; }
  .fpw-use-card { border: 1px solid var(--fpw-line); border-radius: 8px; }
  .fpw-price-grid { gap: 34px 14px; }
  .fpw-price-card { min-height: 340px; }

  .fpw-final-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fpw-final-copy { padding-left: 0; }
}

@media (max-width: 720px) {
  .fpw-container { width: min(100% - 28px, var(--fpw-container)); }
  .fpw-nav { height: auto; padding: 14px 0; }
  .fpw-nav-actions { gap: 12px; }
  .fpw-login-link { display: none; }
  .fpw-logo-wrap img { width: 150px; }
  .fpw-header-cta { padding-inline: 14px; font-size: 12px; }

  .fpw-hero-copy h1 { font-size: 32px; line-height: 1.06; }
  .fpw-hero-copy p { font-size: 17px; }
  .fpw-hero-actions { flex-direction: column; align-items: stretch; }

  .fpw-trust-row,
  .fpw-step-row,
  .fpw-use-grid,
  .fpw-trust-grid,
  .fpw-price-grid,
  .fpw-faq-grid {
    grid-template-columns: 1fr;
  }

  .fpw-step-row { max-width: 100%; gap: 14px; }
  .fpw-step-dash { display: none; }
  .fpw-step-card { grid-template-columns: 70px 1fr; }
  .fpw-step-icon { width: 62px; height: 62px; }
  .fpw-step-icon .fpw-icon { width: 32px; height: 32px; }
  .fpw-step-number { position: static; display: inline-grid; margin-bottom: 5px; }

  .fpw-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .fpw-tab {
    min-height: 48px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .fpw-preview-head { padding: 22px 16px 18px; }
  .fpw-preview-body {
    min-height: auto;
    padding: 14px;
    gap: 14px;
  }

  .fpw-preview-copy { padding: 24px 18px; }

  .fpw-compare-panels { grid-template-columns: 1fr; }
  .fpw-compare-card { min-height: auto; padding: 20px 18px; }
  .fpw-price-grid { gap: 34px; }
  .fpw-price-card { min-height: auto; padding: 24px 20px 20px; }
  .fpw-faq-question { min-height: 58px; padding: 0 16px; font-size: 15px; }
  .fpw-faq-answer { padding: 0 16px 17px; }
  .fpw-final-cta { padding: 36px 0 38px; }
  .fpw-final-copy h2 { font-size: 25px; }
  .fpw-final-copy p { font-size: 15px; }

  .fpw-final-action .fpw-btn { min-width: 100%; }
}
