/* =========================================================
   FERRYPRIX.FR - main stylesheet
   Palette: Deep Sea #0a3c64 + Sunset #ff8a4c + Aqua #2dbfa8
   Type: Lora (display) + IBM Plex Sans (body)
   Prefix: .fp-
   ========================================================= */

:root{
  --fp-sea: #0a3c64;
  --fp-sea-2: #0e4d7e;
  --fp-sea-dk: #062a48;
  --fp-sunset: #ff8a4c;
  --fp-sunset-2: #ff9d68;
  --fp-sunset-dk: #e57438;
  --fp-aqua: #2dbfa8;
  --fp-aqua-2: #3ad0b8;
  --fp-aqua-dk: #1f9e8a;
  --fp-cream: #f7f4ee;
  --fp-sand: #faf7f0;
  --fp-ink: #1a2638;
  --fp-text: #3d4858;
  --fp-muted: #7d8898;
  --fp-line: #e4e8ee;
  --fp-line-soft: #eef1f5;
  --fp-white: #ffffff;
  --fp-radius: 6px;
  --fp-radius-lg: 12px;
  --fp-shadow: 0 2px 12px rgba(10, 60, 100, 0.06);
  --fp-shadow-md: 0 6px 24px rgba(10, 60, 100, 0.10);
  --fp-serif: 'Lora', 'Times New Roman', serif;
  --fp-sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--fp-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fp-text);
  background: var(--fp-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width: 100%; height: auto; display: block; }
.fp-wrap{ max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.fp-wrap--nar{ max-width: 920px; }

/* =========================================================
   HEADER
   ========================================================= */
.fp-topbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--fp-white);
  border-bottom: 1px solid var(--fp-line);
  transition: box-shadow 0.2s ease;
}
.fp-topbar.is-scrolled{ box-shadow: var(--fp-shadow); }
.fp-topbar__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fp-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fp-ink);
}
.fp-brand__mark{
  width: 36px;
  height: 36px;
  background: var(--fp-sea);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-sunset);
}
.fp-brand__mark svg{ width: 20px; height: 20px; }
.fp-brand__wordmark{ display: flex; flex-direction: column; line-height: 1.1; }
.fp-brand__name{ font-family: var(--fp-serif); font-size: 1.25rem; color: var(--fp-ink); font-weight: 600; }
.fp-brand__tag{ font-size: 0.66rem; color: var(--fp-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.fp-nav{ display: flex; align-items: center; gap: 22px; }
.fp-nav a{
  color: var(--fp-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.fp-nav a:hover{ color: var(--fp-sunset-dk); }
.fp-nav .fp-nav__cta{
  background: var(--fp-sunset);
  color: var(--fp-white) !important;
  padding: 8px 16px;
  border-radius: var(--fp-radius);
}
.fp-nav .fp-nav__cta:hover{ background: var(--fp-sunset-dk); }

.fp-burger{
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.fp-burger span{ display: block; width: 22px; height: 2px; background: var(--fp-ink); transition: 0.2s; }

/* =========================================================
   BUTTONS
   ========================================================= */
.fp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--fp-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--fp-radius);
  cursor: pointer;
  border: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.fp-btn--sunset{ background: var(--fp-sunset); color: var(--fp-white); }
.fp-btn--sunset:hover{ background: var(--fp-sunset-dk); color: var(--fp-white); transform: translateY(-1px); }
.fp-btn--sea{ background: var(--fp-sea); color: var(--fp-white); }
.fp-btn--sea:hover{ background: var(--fp-sea-dk); color: var(--fp-white); }
.fp-btn--aqua{ background: var(--fp-aqua); color: var(--fp-white); }
.fp-btn--aqua:hover{ background: var(--fp-aqua-dk); color: var(--fp-white); }
.fp-btn--ghost{
  background: transparent;
  color: var(--fp-sea);
  border: 1.5px solid var(--fp-sea);
}
.fp-btn--ghost:hover{ background: var(--fp-sea); color: var(--fp-white); }

/* =========================================================
   HERO
   ========================================================= */
.fp-hero{
  position: relative;
  background: linear-gradient(180deg, #f7f4ee 0%, #ffffff 100%);
  padding: 50px 0 60px;
}
.fp-hero__chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fp-text);
  margin-bottom: 18px;
}
.fp-hero__chip::before{
  content: "";
  width: 6px;
  height: 6px;
  background: var(--fp-aqua);
  border-radius: 50%;
}
.fp-hero__title{
  font-family: var(--fp-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  color: var(--fp-ink);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.fp-hero__intro{
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--fp-text);
  margin-bottom: 28px;
  max-width: 780px;
}

/* =========================================================
   PSEUDO SEARCH FORM (looks like Omio widget)
   ========================================================= */
.fp-search{
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 8px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  box-shadow: var(--fp-shadow-md);
  width: 100%;
  }
.fp-search__field{
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 10px 16px;
  border-right: 1px solid var(--fp-line);
}
.fp-search__field:last-of-type{ border-right: 0; }
.fp-search__field label{
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--fp-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fp-search__field select,
.fp-search__field input{
  border: 0;
  background-color: transparent;
  font-family: var(--fp-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fp-ink);
  padding: 4px 22px 4px 0;
  width: 100%;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237d8898' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.fp-search__field input{
  background-image: none;
  cursor: text;
}
.fp-search > button{
  flex: 0 0 auto;
  padding: 0 28px;
  margin-left: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--fp-radius);
  white-space: nowrap;
}

.fp-search-bullets{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--fp-text);
}
.fp-search-bullets span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fp-search-bullets span::before{
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232dbfa8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* =========================================================
   KPI BAR (4 stats under hero)
   ========================================================= */
.fp-kpi{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
}
.fp-kpi__cell{
  padding: 22px 24px;
  border-right: 1px solid var(--fp-line);
}
.fp-kpi__cell:last-child{ border-right: 0; }
.fp-kpi__val{
  font-family: var(--fp-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--fp-sea);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.fp-kpi__lbl{
  font-size: 0.84rem;
  color: var(--fp-muted);
}

/* =========================================================
   HERO POST (text after form)
   ========================================================= */
.fp-hero-post{
  padding: 50px 0 30px;
}
.fp-hero-post p{
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--fp-text);
  margin-bottom: 16px;
}
.fp-hero-post p:last-child{ margin-bottom: 0; }
.fp-hero-post strong{ color: var(--fp-ink); font-weight: 600; }

/* =========================================================
   SECTIONS
   ========================================================= */
.fp-sec{ padding: 60px 0; }
.fp-sec--alt{ background: var(--fp-cream); }

.fp-sec h2{
  font-family: var(--fp-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  color: var(--fp-ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.fp-sec h3{
  font-family: var(--fp-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--fp-ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.fp-sec p{
  font-size: 1rem;
  color: var(--fp-text);
  margin-bottom: 16px;
}
.fp-sec p:last-child{ margin-bottom: 0; }
.fp-sec strong{ color: var(--fp-ink); font-weight: 600; }

.fp-sec ul{ margin: 0 0 18px 0; padding-left: 0; list-style: none; }
.fp-sec ul li{
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--fp-text);
}
.fp-sec ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8a4c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* =========================================================
   PRICE TABLE
   ========================================================= */
.fp-table-wrap{
  overflow-x: auto;
  margin-bottom: 18px;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
}
.fp-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.fp-table th, .fp-table td{
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--fp-line);
}
.fp-table th{
  background: var(--fp-cream);
  font-weight: 600;
  color: var(--fp-ink);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fp-table tbody tr:last-child td{ border-bottom: 0; }
.fp-table tbody tr:hover{ background: var(--fp-line-soft); }
.fp-table td:last-child{ font-weight: 600; color: var(--fp-sunset-dk); white-space: nowrap; }

/* =========================================================
   MONTHLY BARS CHART
   ========================================================= */
.fp-chart{
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 28px 26px;
  margin-bottom: 20px;
}
.fp-chart__head{ margin-bottom: 22px; }
.fp-chart__head h3{ margin-bottom: 6px; font-size: 1.15rem; }
.fp-chart__head p{ font-size: 0.88rem; color: var(--fp-muted); margin: 0; }

.fp-bars{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  align-items: end;
  height: 200px;
  margin-bottom: 14px;
}
.fp-bar{
  position: relative;
  border-radius: 4px 4px 0 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  cursor: default;
  transition: transform 0.15s;
}
.fp-bar:hover{ transform: scaleY(1.04); transform-origin: bottom; }
.fp-bar__val{
  position: absolute;
  top: -22px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fp-ink);
}
.fp-bar--low{ background: linear-gradient(180deg, #b8e0d5 0%, #2dbfa8 100%); }
.fp-bar--mid{ background: linear-gradient(180deg, #ffd0a8 0%, #ff8a4c 100%); }
.fp-bar--high{ background: linear-gradient(180deg, #ff9d68 0%, #e57438 100%); }
.fp-bar--peak{ background: linear-gradient(180deg, #b9354c 0%, #831b30 100%); }

.fp-bars-labels{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.fp-bars-labels span{
  text-align: center;
  font-size: 0.74rem;
  color: var(--fp-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.fp-chart__legend{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--fp-line);
}
.fp-chart__legend-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--fp-text);
}
.fp-chart__legend-item::before{
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.fp-chart__legend-item--low::before{ background: #2dbfa8; }
.fp-chart__legend-item--mid::before{ background: #ff8a4c; }
.fp-chart__legend-item--high::before{ background: #e57438; }
.fp-chart__legend-item--peak::before{ background: #831b30; }

/* =========================================================
   MAP CARD
   ========================================================= */
.fp-map-card{
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 26px;
  margin-bottom: 20px;
}
.fp-map-card__head{ margin-bottom: 18px; }
.fp-map-card__head h3{ margin-bottom: 4px; font-size: 1.15rem; }
.fp-map-card__head p{ font-size: 0.9rem; color: var(--fp-muted); margin: 0; }
.fp-map-card__svg{
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(180deg, #e8f2f8 0%, #f7f4ee 100%);
  border-radius: var(--fp-radius);
  border: 1px solid var(--fp-line-soft);
}
.fp-map-card__legend{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.86rem;
  color: var(--fp-text);
}
.fp-map-card__legend span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fp-map-card__legend span::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fp-sunset);
}
.fp-map-card__legend span.is-end::before{ background: var(--fp-sea); }

/* =========================================================
   OPERATOR CARDS
   ========================================================= */
.fp-op{
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-lg);
  padding: 26px;
  margin-bottom: 20px;
}
.fp-op:last-child{ margin-bottom: 0; }
.fp-op h3{
  font-family: var(--fp-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--fp-ink);
  margin-bottom: 8px;
}
.fp-op__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.fp-op__chip{
  font-size: 0.78rem;
  padding: 4px 12px;
  background: var(--fp-cream);
  border: 1px solid var(--fp-line);
  border-radius: 999px;
  color: var(--fp-text);
  font-weight: 500;
}
.fp-op__chip strong{ color: var(--fp-sunset-dk); }
.fp-op p{ margin-bottom: 14px; }

/* =========================================================
   FACTS GRID (final)
   ========================================================= */
.fp-facts{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.fp-fact{
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  padding: 18px 20px;
}
.fp-fact__lbl{
  font-size: 0.78rem;
  color: var(--fp-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  font-weight: 500;
}
.fp-fact__val{
  font-family: var(--fp-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fp-ink);
  letter-spacing: -0.01em;
}

/* =========================================================
   CTA BLOCK
   ========================================================= */
.fp-cta-block{
  margin-top: 30px;
  padding: 30px 32px;
  background: linear-gradient(135deg, var(--fp-sea) 0%, var(--fp-sea-2) 100%);
  border-radius: var(--fp-radius-lg);
  color: var(--fp-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.fp-cta-block__txt h3{
  font-family: var(--fp-serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--fp-white);
  margin-bottom: 6px;
}
.fp-cta-block__txt p{
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* =========================================================
   ROUTE GRID (homepage destinations by region)
   ========================================================= */
.fp-region{ margin-bottom: 40px; }
.fp-region:last-child{ margin-bottom: 0; }
.fp-region__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
.fp-region h3{
  font-family: var(--fp-serif);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--fp-ink);
}
.fp-region__intro{
  color: var(--fp-text);
  font-size: 0.95rem;
  margin-bottom: 18px;
  max-width: 780px;
}
.fp-routes{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}
.fp-route{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--fp-white);
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  text-decoration: none;
  color: var(--fp-ink);
  transition: all 0.15s ease;
  font-weight: 500;
  font-size: 0.94rem;
}
.fp-route:hover{
  border-color: var(--fp-sunset);
  background: #fff8f2;
  transform: translateY(-1px);
}
.fp-route__arrow{ color: var(--fp-muted); font-size: 0.85rem; }
.fp-route--soon{ opacity: 0.5; pointer-events: none; cursor: default; }

/* =========================================================
   FAQ
   ========================================================= */
.fp-faq-item{
  border-bottom: 1px solid var(--fp-line);
  padding: 18px 0;
}
.fp-faq-item:last-child{ border-bottom: 0; }
.fp-faq-item h3{
  font-family: var(--fp-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fp-ink);
  margin-bottom: 8px;
}
.fp-faq-item p{ margin: 0; font-size: 0.95rem; color: var(--fp-text); }

/* =========================================================
   FOOTER
   ========================================================= */
.fp-foot{
  background: var(--fp-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 24px;
}
.fp-foot a{ color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color 0.15s; }
.fp-foot a:hover{ color: var(--fp-sunset); }
.fp-foot__top{
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.fp-foot__brand{ max-width: 340px; }
.fp-foot__brand .fp-brand{ color: var(--fp-white); margin-bottom: 16px; }
.fp-foot__brand .fp-brand__name{ color: var(--fp-white); }
.fp-foot__brand .fp-brand__tag{ color: rgba(255, 255, 255, 0.5); }
.fp-foot__brand p{ font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); line-height: 1.65; margin-bottom: 10px; }
.fp-foot__contact a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--fp-sunset) !important;
  font-weight: 500;
}
.fp-foot__col h4{
  font-family: var(--fp-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-white);
  margin-bottom: 14px;
}
.fp-foot__col ul{ list-style: none; padding: 0; margin: 0; }
.fp-foot__col li{ margin-bottom: 8px; font-size: 0.88rem; }
.fp-foot__info{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.86rem;
}
.fp-foot__bottom{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 880px){
  .fp-kpi{ grid-template-columns: repeat(2, 1fr); }
  .fp-kpi__cell:nth-child(2){ border-right: 0; }
  .fp-kpi__cell:nth-child(-n+2){ border-bottom: 1px solid var(--fp-line); }
  .fp-facts{ grid-template-columns: repeat(2, 1fr); }
  .fp-foot__top{ grid-template-columns: 1fr 1fr; gap: 26px; }
  .fp-foot__brand{ grid-column: span 2; }
  .fp-cta-block{ text-align: center; }
}

@media (max-width: 720px){
  .fp-nav{ display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--fp-white); flex-direction: column; gap: 0; border-bottom: 1px solid var(--fp-line); box-shadow: var(--fp-shadow); padding: 12px 0; }
  .fp-nav.is-open{ display: flex; }
  .fp-nav a{ padding: 12px 20px; width: 100%; }
  .fp-nav .fp-nav__cta{ margin: 8px 20px; padding: 12px 20px; text-align: center; }
  .fp-burger{ display: flex; }

  .fp-hero{ padding: 30px 0 40px; }
  .fp-hero__title{ font-size: 1.8rem; }

  .fp-search{ flex-direction: column; padding: 6px; gap: 0; }
  .fp-search__field{ border-right: 0; border-bottom: 1px solid var(--fp-line); padding: 10px 14px; }
  .fp-search__field:last-of-type{ border-bottom: 0; }
  .fp-search > button{ width: 100%; margin: 6px 0 0; padding: 14px 16px; }

  .fp-kpi{ grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .fp-bars{ height: 160px; }
  .fp-sec{ padding: 40px 0; }
  .fp-facts{ grid-template-columns: 1fr 1fr; gap: 10px; }
  .fp-foot__top{ grid-template-columns: 1fr; }
  .fp-foot__brand{ grid-column: auto; }
  .fp-btn{ width: 100%; }
  .fp-cta-block{ flex-direction: column; align-items: stretch; gap: 18px; padding: 24px; }
  .fp-cta-block .fp-btn{ width: 100%; }
  .fp-bars-labels span{ font-size: 0.62rem; }
  .fp-search-bullets{ font-size: 0.74rem; gap: 8px 14px; }
}
