/* =========================================
   FRA VERA JOURNEY – DESIGN SYSTEM v2.0
   Premium Wellness | Liquid Aurora
   ========================================= */

:root {
  /* PALETA KOLORÓW */
  --color-aurora-deep: #062E7E;
  --color-aurora-light: #246ED4;
  --color-gold: #E5C98B;
  --color-sage: #5EA59B;
  --color-pearl: #F5F7FA;
  --color-text-main: #0B1021;
  --color-text-soft: #4A5568;
  --color-dark-bg: #101326;
  
  /* EFEKTY */
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: 1px solid rgba(255, 255, 255, 0.8);
  --shadow-soft: 0 10px 30px rgba(6, 46, 126, 0.05);
  --shadow-hover: 0 20px 40px rgba(6, 46, 126, 0.12);
  
  /* TYPOGRAFIA */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* ANIMACJE */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background: var(--color-pearl);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-normal); }

/* =========================================
   TYPOGRAFIA
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-aurora-deep);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--color-text-soft); font-size: 1.05rem; line-height: 1.7; }

.text-center { text-align: center; }
.text-white { color: white; }
.text-gold { color: var(--color-gold); }

/* =========================================
   PRZYCISKI
   ========================================= */
.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.cta--main {
  background: var(--color-aurora-deep);
  color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(6, 46, 126, 0.3);
}

.cta--main:hover {
  background: #041B4D;
  transform: translateY(-2px);
  color: #fff;
}

.cta--secondary {
  background: transparent;
  border: 2px solid var(--color-aurora-deep);
  color: var(--color-aurora-deep);
}

.cta--secondary:hover {
  background: var(--color-aurora-deep);
  color: #fff;
}

.cta--gold {
  background: var(--color-gold);
  color: var(--color-aurora-deep);
}

.cta--gold:hover {
  background: #d4b87a;
  transform: translateY(-2px);
}

.cta--small { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
.cta--outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.cta--outline-white:hover {
  background: white;
  color: var(--color-aurora-deep);
}

.center-btn { text-align: center; margin-top: 2rem; }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 247, 250, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
}

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

.brand a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-aurora-deep);
}

.brand-logo { height: 40px; width: auto; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 0.5rem 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-normal);
}

.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a:hover { color: var(--color-aurora-deep); }

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-switch a {
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.lang-switch a:hover, .lang-switch a.is-active {
  background: var(--color-aurora-deep);
  color: white;
  border-color: var(--color-aurora-deep);
}

.nav-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-aurora-deep);
  padding: 0.5rem;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-mobile.is-open { display: block; }
.nav-mobile a { display: block; padding: 0.75rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06); font-size: 1rem; }

@media (min-width: 992px) {
  .nav-desktop { display: flex; }
  .nav-mobile-btn { display: none; }
  .nav-mobile { display: none !important; }
}

/* =========================================
   HERO SECTION - MILK/FOG OVERLAY
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/img/hero.png') no-repeat center center/cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 46, 126, 0.4) 0%,
    rgba(6, 46, 126, 0.2) 30%,
    rgba(245, 247, 250, 0.6) 70%,
    rgba(245, 247, 250, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 3rem;
  margin-top: -5vh;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--color-aurora-deep);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero-content .subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-content .description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--color-text-soft);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: var(--color-aurora-deep);
  font-size: 2rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================================
   SECTIONS LAYOUT
   ========================================= */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; }

.section-dark {
  background: var(--color-dark-bg);
  color: white;
}

.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255, 255, 255, 0.8); }

/* =========================================
   GLASS PANELS & CARDS
   ========================================= */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* =========================================
   GRIDS
   ========================================= */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   PATH SELECTION (Individual vs B2B)
   ========================================= */
.path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .path-grid { grid-template-columns: repeat(2, 1fr); }
}

.path-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  text-align: center;
}

.path-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.path-card .icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.path-card h3 {
  color: var(--color-aurora-deep);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.path-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.path-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-soft);
}

.path-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-sage);
  font-weight: bold;
}

/* =========================================
   VALUES SECTION - CENTERED ICONS
   ========================================= */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  flex: 0 1 calc(33.333% - 2rem);
  min-width: 250px;
  text-align: center;
  padding: 2rem;
}

@media (max-width: 768px) {
  .value-item { flex: 0 1 100%; }
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: rgba(229, 201, 139, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.value-item h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.value-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* =========================================
   HOW IT WORKS - LEGAL BUTTONS
   ========================================= */
.legal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-buttons a {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--color-aurora-deep);
  color: var(--color-aurora-deep);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.legal-buttons a:hover {
  background: var(--color-aurora-deep);
  color: white;
}

/* =========================================
   DESTINATIONS
   ========================================= */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img { transform: scale(1.05); }

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.destination-overlay h3 {
  color: white;
  margin-bottom: 0.25rem;
}

.destination-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================
   MAP SECTION
   ========================================= */
.map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

#poland-map {
  width: 100%;
  height: 100%;
}

#poland-map path {
  fill: #E8F4F8;
  stroke: var(--color-aurora-deep);
  stroke-width: 1.5;
  transition: fill 0.3s ease;
}

#poland-map path:hover {
  fill: #D0E8F0;
}

.destination-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--color-gold);
  border: 3px solid var(--color-aurora-deep);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 10;
}

.destination-marker:hover {
  transform: translate(-50%, -50%) scale(1.4);
  background: var(--color-aurora-deep);
  border-color: var(--color-gold);
}

.destination-tooltip {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 280px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.destination-tooltip.visible {
  opacity: 1;
  visibility: visible;
}

.destination-tooltip img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-aurora-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

/* =========================================
   CONVERSION ELEMENTS
   ========================================= */
.conversion-section {
  background: linear-gradient(135deg, var(--color-aurora-deep) 0%, #0a1a4a 100%);
  color: white;
  padding: 4rem 1.5rem;
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .conversion-grid { grid-template-columns: repeat(2, 1fr); }
}

.conversion-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.conversion-card h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.conversion-card p, .conversion-card li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.conversion-card ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.conversion-card li {
  margin-bottom: 0.5rem;
}

/* =========================================
   LEAD MAGNET
   ========================================= */
.lead-magnet {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
}

.lead-magnet h3 {
  color: var(--color-aurora-deep);
  margin-bottom: 0.5rem;
}

.lead-magnet p {
  color: var(--color-text-soft);
  margin-bottom: 1.5rem;
}

.lead-magnet-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lead-magnet-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.lead-magnet-form input:focus {
  outline: none;
  border-color: var(--color-aurora-deep);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--color-dark-bg);
  color: white;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-col h3, .footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p, .footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-col a:hover { color: var(--color-gold); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

/* =========================================
   STICKY CTA
   ========================================= */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
}

.sticky-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.sticky-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.sticky-text {
  font-weight: 600;
  color: var(--color-aurora-deep);
  font-size: 0.9rem;
}

/* =========================================
   FORMS
   ========================================= */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-aurora-deep);
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin: 0;
}

/* =========================================
   PAGE HEADER
   ========================================= */
.page-header {
  background: linear-gradient(135deg, var(--color-aurora-deep) 0%, #0a1a4a 100%);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 4rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================================
   BLOG
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* =========================================
   UTILITY
   ========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================
   LANGUAGE SELECTOR PAGE
   ========================================= */
.lang-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-aurora-deep) 0%, #0a1a4a 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.lang-page .logo {
  margin-bottom: 3rem;
}

.lang-page .logo img {
  height: 100px;
  margin-bottom: 1.5rem;
}

.lang-page .logo h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.lang-page .logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}

.lang-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.lang-btn .flag {
  font-size: 2rem;
}

.lang-btn .info {
  flex: 1;
  text-align: left;
}

.lang-btn .info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: white;
}

.lang-btn .info span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.lang-btn .arrow {
  font-size: 1.5rem;
  opacity: 0.5;
}

/* =========================================
   404 PAGE
   ========================================= */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-aurora-deep) 0%, #0a1a4a 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.error-page p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

.error-langs {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.error-langs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.error-langs a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}


/* =========================================
   ADDITIONAL STYLES - ETAP 2 & 3
   ========================================= */

/* Milk/Fog Hero Effect */
.hero-milk-fog {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 0.7) 70%,
    rgba(255, 255, 255, 0.95) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-aurora-deep);
  font-weight: 500;
}

.trust-badge svg {
  color: var(--color-sage);
}

/* Path Selection Cards */
.path-selection {
  background: var(--color-pearl);
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.path-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  text-align: center;
}

.path-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.path-card.individual:hover {
  border-color: var(--color-sage);
}

.path-card.b2b:hover {
  border-color: var(--color-aurora-light);
}

.path-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(229, 201, 139, 0.2) 0%, rgba(229, 201, 139, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-aurora-deep);
}

.path-card.individual .path-icon {
  background: linear-gradient(135deg, rgba(94, 165, 155, 0.2) 0%, rgba(94, 165, 155, 0.05) 100%);
  color: var(--color-sage);
}

.path-card.b2b .path-icon {
  background: linear-gradient(135deg, rgba(36, 110, 212, 0.2) 0%, rgba(36, 110, 212, 0.05) 100%);
  color: var(--color-aurora-light);
}

.path-title {
  font-size: 1.5rem;
  color: var(--color-aurora-deep);
  margin-bottom: 1rem;
}

.path-description {
  color: var(--color-text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.path-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.path-features li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--color-text-soft);
}

.path-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-sage);
  font-weight: bold;
}

/* Values Section - Centered */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(229, 201, 139, 0.2) 0%, rgba(229, 201, 139, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-aurora-deep);
  transition: all var(--transition-normal);
}

.value-card:hover .value-icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(229, 201, 139, 0.3) 0%, rgba(229, 201, 139, 0.1) 100%);
}

.value-title {
  font-size: 1.25rem;
  color: var(--color-aurora-deep);
  margin-bottom: 0.75rem;
}

.value-description {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* How It Works - Legal Buttons */
.legal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-text {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--color-aurora-deep);
  color: var(--color-aurora-deep);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  background: transparent;
  cursor: pointer;
}

.btn-text:hover {
  background: var(--color-aurora-deep);
  color: white;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(229, 201, 139, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-aurora-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.15rem;
  color: var(--color-aurora-deep);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-link {
  color: var(--color-aurora-deep);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-link:hover {
  color: var(--color-gold);
}

.blog-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-aurora-deep) 0%, #0a1a4a 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Map Section */
.map-section {
  background: var(--color-pearl);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .map-container {
    grid-template-columns: 2fr 1fr;
  }
}

.map-wrapper {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.poland-map {
  width: 100%;
  height: auto;
}

.map-tooltip {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 250px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.map-tooltip.visible {
  opacity: 1;
  visibility: visible;
}

.regions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.region-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-hover);
}

.region-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.region-name {
  font-weight: 500;
  color: var(--color-aurora-deep);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  color: var(--color-text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--color-aurora-deep);
}

.author-location {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

/* Footer */
.footer {
  background: var(--color-dark-bg);
  color: white;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo .logo-fravera {
  color: var(--color-gold);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-gold);
  color: var(--color-aurora-deep);
}

.footer-title {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

/* 404 Page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-aurora-deep) 0%, #0a1a4a 100%);
  text-align: center;
  padding: 2rem;
}

.error-content {
  max-width: 500px;
}

.error-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: white;
  margin-bottom: 1rem;
}

.error-message {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.error-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1.5rem;
}

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

.cookie-content p {
  margin: 0;
  color: var(--color-text-soft);
}

.cookie-content a {
  color: var(--color-aurora-deep);
  text-decoration: underline;
}

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

/* Language Selector */
.language-selector {
  position: relative;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: var(--color-aurora-deep);
  color: white;
  border-color: var(--color-aurora-deep);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.language-selector:hover .lang-dropdown,
.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.lang-option:hover,
.lang-option.active {
  background: var(--color-aurora-deep);
  color: white;
}

/* Mobile Navigation */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-aurora-deep);
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--color-aurora-deep);
}

.scroll-indicator span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-aurora-deep);
  border-bottom: 2px solid var(--color-aurora-deep);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(10px);
  }
  60% {
    transform: rotate(45deg) translateY(5px);
  }
}

/* Utility Classes */
.section-padding {
  padding: 5rem 1.5rem;
}

.bg-light {
  background: var(--color-pearl);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(229, 201, 139, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-aurora-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-aurora-deep);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--color-text-soft);
  font-size: 1.1rem;
}

/* Button Variants */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-aurora-deep);
  color: white;
}

.btn-primary:hover {
  background: #041B4D;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-aurora-deep);
  color: var(--color-aurora-deep);
}

.btn-outline:hover {
  background: var(--color-aurora-deep);
  color: white;
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  color: var(--color-aurora-deep);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}
