@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

:root {
  --vitality-bg: #0B0F19;
  --vitality-surface: #161F30;
  --vitality-tone: #00E699;
  --vitality-tone-hover: #00B377;
  --vitality-ink: #F3F4F6;
  --vitality-dim: #9CA3AF;
  --vitality-border: #24304A;
  --vitality-glow: rgba(0, 230, 153, 0.2);
  --vitality-gradient: linear-gradient(135deg, #00E699 0%, #0088CC 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Global resets & typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  color: var(--vitality-ink);
  background-color: var(--vitality-bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

h1, h2, h3, h4, .vessel-heading-uppercase {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vitality-ink);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

p {
  color: var(--vitality-dim);
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Scroll Progress Bar (CSS Only) */
@keyframes progress-grow { 
  to { width: 100%; } 
}
.scroll-progress-indicator { 
  height: 4px; 
  width: 0; 
  background: var(--vitality-gradient); 
  position: fixed; 
  top: 0; 
  left: 0; 
  z-index: 99999; 
  animation: progress-grow linear; 
  animation-timeline: scroll(); 
}

/* Scroll View Animations */
@keyframes reveal-slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal-viewport-active {
  animation: reveal-slide-up 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 30%;
}

/* Header & Navigation */
.header-masthead {
  position: sticky;
  top: 0;
  background-color: var(--vitality-surface);
  border-bottom: 1px solid var(--vitality-border);
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner-deck {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--vitality-tone);
}

.header-brand-wrap svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
}

.header-nav-trigger-checkbox {
  display: none;
}

.header-nav-trigger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 10001;
}

.header-nav-trigger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--vitality-ink);
  transition: all 0.3s ease;
}

.header-navigation-drawer {
  display: flex;
  gap: 2rem;
}

.header-navigation-drawer a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}

.header-navigation-drawer a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vitality-tone);
  transition: width 0.3s ease;
}

.header-navigation-drawer a:hover::after,
.header-navigation-drawer a.active-linkway::after {
  width: 100%;
}

.header-navigation-drawer a:hover {
  color: var(--vitality-tone);
}

/* Custom layout blocks */
.pressure-showcase-billboard {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10dvh 2rem;
  text-align: center;
}

.pressure-showcase-billboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.75);
  z-index: 1;
}

.pressure-billboard-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.pressure-billboard-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.pressure-billboard-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: var(--vitality-ink);
}

/* Buttons */
.pressure-trigger-capsule {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  background: var(--vitality-gradient);
  color: var(--vitality-bg);
  box-shadow: 0 4px 15px var(--vitality-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pressure-trigger-capsule:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--vitality-glow);
  color: var(--vitality-bg);
}

/* Floating Stat Bar */
.vessel-floating-stat-band {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.vessel-stat-shelf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vessel-numeric-plate {
  background-color: var(--vitality-surface);
  border: 1px solid var(--vitality-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.vessel-numeric-plate:hover {
  transform: translateY(-5px);
}

.vessel-stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--vitality-tone);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vessel-stat-label {
  font-size: 0.95rem;
  color: var(--vitality-ink);
  font-weight: 600;
}

/* Section paddings & common layouts */
.vessel-viewport-deck {
  padding: 10dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Zigzag Content Sections */
.vessel-content-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 10dvh;
}

.vessel-content-row:nth-child(even) {
  flex-direction: row-reverse;
}

.vessel-column-half {
  flex: 1;
}

.vessel-image-frame {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 16px;
}

.vessel-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vessel-content-row:nth-child(odd) .vessel-image-frame {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.vessel-content-row:nth-child(even) .vessel-image-frame {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* Features Grid */
.vessel-benefit-cluster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vessel-benefit-plate {
  background-color: var(--vitality-surface);
  border-left: 4px solid var(--vitality-tone);
  border-top: 1px solid var(--vitality-border);
  border-right: 1px solid var(--vitality-border);
  border-bottom: 1px solid var(--vitality-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vessel-benefit-plate:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.vessel-benefit-plate svg {
  fill: var(--vitality-tone);
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}

.vessel-benefit-plate h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Timeline "Jak to działa" */
.vessel-timeline-arena {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0 auto;
  padding: 1rem 0;
}

.vessel-timeline-arena::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--vitality-border);
  transform: translateX(-50%);
}

.vessel-timeline-milestone {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
}

.vessel-timeline-milestone:nth-child(odd) {
  justify-content: flex-start;
}

.vessel-timeline-milestone:nth-child(even) {
  justify-content: flex-end;
}

.vessel-timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--vitality-surface);
  border: 3px solid var(--vitality-tone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--vitality-tone);
  z-index: 5;
}

.vessel-timeline-payload {
  width: 45%;
  background-color: var(--vitality-surface);
  border: 1px solid var(--vitality-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* CTA Strip with Paralax BG */
.pressure-direct-prompt {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 12dvh 2rem;
  text-align: center;
}

.pressure-direct-prompt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 25, 0.85);
}

.pressure-direct-prompt-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

/* Footer Section */
.vessel-footer {
  background-color: var(--vitality-surface);
  border-top: 1px solid var(--vitality-border);
  padding: 5rem 2rem 2rem 2rem;
  margin-top: auto;
}

.vessel-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vessel-footer-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.vessel-footer-nav-hub {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.vessel-footer-nav-hub ul {
  list-style: none;
}

.vessel-footer-nav-hub h4 {
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--vitality-tone);
}

.vessel-footer-nav-hub li {
  margin-bottom: 0.75rem;
}

.vessel-footer-nav-hub a {
  font-size: 0.9rem;
  color: var(--vitality-dim);
}

.vessel-footer-nav-hub a:hover {
  color: var(--vitality-tone);
}

.vessel-footer-disclaimer {
  border-top: 1px solid var(--vitality-border);
  border-bottom: 1px solid var(--vitality-border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--vitality-dim);
}

.vessel-footer-copyright-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--vitality-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie Banner */
.cookie-banner-island {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background-color: var(--vitality-surface);
  border-top: 2px solid var(--vitality-tone);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner-island.active-banner {
  transform: translateY(0);
}

.cookie-banner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--vitality-ink);
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn-accept, .cookie-btn-decline {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--vitality-tone);
  border: 1px solid var(--vitality-tone);
  color: var(--vitality-bg);
}

.cookie-btn-accept:hover {
  background-color: var(--vitality-tone-hover);
  border-color: var(--vitality-tone-hover);
}

.cookie-btn-decline {
  background-color: transparent;
  border: 1px solid var(--vitality-border);
  color: var(--vitality-ink);
}

.cookie-btn-decline:hover {
  background-color: var(--vitality-border);
}

/* Multi-step Reservation Content */
.vessel-reserve-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

@media(min-width: 992px) {
  .vessel-reserve-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.vessel-card-vibe-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vessel-info-bullet-card {
  background-color: var(--vitality-surface);
  border: 1px solid var(--vitality-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.vessel-info-bullet-card h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vessel-info-bullet-card svg {
  fill: var(--vitality-tone);
  width: 32px;
  height: 32px;
}

.vessel-bulleted-flow {
  list-style: none;
  margin-top: 1.5rem;
}

.vessel-bulleted-flow li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--vitality-dim);
}

.vessel-bulleted-flow li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--vitality-tone);
}

/* Form Styles */
.vessel-form-container-plate {
  background-color: var(--vitality-surface);
  border: 1px solid var(--vitality-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  position: sticky;
  top: 100px;
}

.vessel-form-container-plate h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.vessel-form-input-block {
  margin-bottom: 1.5rem;
}

.vessel-form-input-block label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--vitality-ink);
}

.vessel-form-input-block input[type="text"],
.vessel-form-input-block input[type="tel"],
.vessel-form-input-block select {
  width: 100%;
  padding: 1rem;
  background-color: var(--vitality-bg);
  border: 1px solid var(--vitality-border);
  border-radius: 8px;
  color: var(--vitality-ink);
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.vessel-form-input-block input:focus,
.vessel-form-input-block select:focus {
  outline: none;
  border-color: var(--vitality-tone);
}

.vessel-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--vitality-dim);
  cursor: pointer;
}

.vessel-checkbox-label input {
  margin-top: 0.25rem;
}

.vessel-checkbox-label a {
  color: var(--vitality-tone);
  text-decoration: underline;
}

.vessel-form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--vitality-gradient);
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vitality-bg);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vessel-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--vitality-glow);
}

/* FAQ Accordion Styling */
.vessel-faq-deck {
  margin-top: 6rem;
}

.vessel-faq-card {
  background-color: var(--vitality-surface);
  border: 1px solid var(--vitality-border);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  padding: 2rem;
}

.vessel-faq-card h3 {
  font-size: 1.15rem;
  color: var(--vitality-tone);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--vitality-border);
  padding-bottom: 0.5rem;
}

/* Simple text pages structure */
.editorial-text-plate {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.editorial-text-plate h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.editorial-text-plate h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem 0;
}

/* Contact Info Area */
.vessel-contact-strip {
  margin-top: 3rem;
  text-align: center;
  background-color: var(--vitality-surface);
  border: 1px solid var(--vitality-border);
  padding: 2.5rem;
  border-radius: 16px;
}

.vessel-contact-strip p {
  margin-bottom: 0.75rem;
}

.vessel-contact-strip a {
  color: var(--vitality-tone);
  font-weight: 700;
}

/* Responsive Overrides */
@media(max-width: 991px) {
  .vessel-content-row {
    flex-direction: column !important;
    gap: 2rem;
  }
  .vessel-image-frame {
    height: 300px;
    clip-path: none !important;
  }
}

@media(max-width: 768px) {
  .header-nav-trigger-label {
    display: flex;
  }

  .header-navigation-drawer {
    position: fixed;
    top: 72px;
    left: 100%;
    right: -100%;
    bottom: 0;
    background-color: var(--vitality-surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.4s ease, right 0.4s ease;
    z-index: 10000;
  }

  .header-nav-trigger-checkbox:checked ~ .header-navigation-drawer {
    left: 0;
    right: 0;
  }

  .header-nav-trigger-checkbox:checked ~ .header-nav-trigger-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .header-nav-trigger-checkbox:checked ~ .header-nav-trigger-label span:nth-child(2) {
    opacity: 0;
  }

  .header-nav-trigger-checkbox:checked ~ .header-nav-trigger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .vessel-timeline-arena::before {
    left: 20px;
  }

  .vessel-timeline-milestone {
    justify-content: flex-start !important;
    padding-left: 50px;
  }

  .vessel-timeline-marker {
    left: 20px;
    transform: translateX(-50%);
  }

  .vessel-timeline-payload {
    width: 100%;
  }

  .vessel-footer-row-top {
    flex-direction: column;
    gap: 3rem;
  }
}