/* =========================================
   TAXI SZCZECIN — Main Stylesheet
   Premium · Minimalist · SEO-ready
   ========================================= */

/* === GOOGLE FONTS PRELOAD === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Colors */
  --navy:        #0D1E3A;
  --navy-mid:    #142B52;
  --blue:        #133880;          /* przyciemniony o 2 tony */
  --blue-light:  #1A4EC2;          /* przyciemniony o 2 tony */
  --sky:         #EFF6FF;
  --sky-mid:     #DBEAFE;
  --gold:        #B8922A;
  --gold-light:  #D4A853;
  --white:       #FFFFFF;
  --off-white:   #F8FAFD;
  --gray-100:    #F1F5F9;
  --gray-300:    #CBD5E1;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --text:        #0D1E3A;
  --text-light:  #4A5568;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #0D1E3A 0%, #133880 50%, #1A4EC2 100%);
  --grad-section: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
  --grad-cta:     linear-gradient(135deg, #133880, #1A4EC2);
  --grad-gold:    linear-gradient(135deg, #B8922A, #D4A853);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --section-py: 5rem;
  --section-py-sm: 3rem;

  /* Borders */
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(13,30,58,.07);
  --shadow-md:  0 8px 30px rgba(13,30,58,.10);
  --shadow-lg:  0 20px 60px rgba(13,30,58,.15);
  --shadow-xl:  0 30px 80px rgba(13,30,58,.20);

  /* Transitions */
  --trans: all .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: var(--trans);
}

a:hover { color: var(--blue-light); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

section { position: relative; }

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

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

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold-light); }
.text-navy { color: var(--navy); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
}

.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;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,.45);
  color: var(--white);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,146,42,.30);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,146,42,.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

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

.btn-sm {
  padding: .6rem 1.3rem;
  font-size: .85rem;
}

/* === HEADER / NAVBAR === */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--trans);
}

#header.scrolled {
  background: rgba(13,30,58,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: .65rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
  padding: .3rem 0;
  position: relative;
  transition: var(--trans);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: var(--trans);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--grad-gold);
  color: var(--white);
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  box-shadow: 0 2px 12px rgba(184,146,42,.4);
  transition: var(--trans);
  white-space: nowrap;
}

.nav-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(184,146,42,.5);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO SECTION === */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  border-color: rgba(184,146,42,.12);
}

.hero-circle-3 {
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255,255,255,.03);
}

.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(184,146,42,.15);
  border: 1px solid rgba(184,146,42,.3);
  color: var(--gold-light);
  padding: .45rem 1rem;
  border-radius: 2rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title strong {
  font-weight: 700;
  display: block;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}

.proof-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 4px;
  height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: .3; }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  /* white-space removed — pozwala zawijać tekst na małych ekranach */
}

.trust-item i {
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* === SERVICES SECTION === */
#services {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  /* Gwarantowana widoczność — niezależnie od AOS / JS */
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-mid);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--sky);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--trans);
}

.service-card:hover .service-icon {
  background: var(--grad-cta);
}

.service-card:hover .service-icon i {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .9rem;
  margin: 0;
}

/* === WHY US === */
#why-us {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-feature {
  padding: 1.5rem;
  background: var(--sky);
  border-radius: var(--radius-lg);
  transition: var(--trans);
}

.why-feature:hover {
  background: var(--sky-mid);
  transform: translateY(-2px);
}

.why-feature-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.why-feature h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: .25rem;
}

.why-feature p {
  font-size: .85rem;
  margin: 0;
}

.why-image-box {
  position: relative;
}

.why-image-card {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-image-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.why-stat {
  text-align: center;
}

.why-stat .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: .25rem;
}

.why-stat .label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}

/* === HOW IT WORKS === */
#how {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

/* Connector line — only desktop, 4-column layout */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: var(--grad-cta);
  z-index: 0;
  opacity: .15;
  pointer-events: none;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  /* Fallback visibility — zapewnia widoczność bez AOS/GSAP */
  opacity: 1 !important;
  transform: none !important;
}

/* Nadpisanie domyślnego AOS ukrywającego elementy — sekcja kroków */
#how [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 auto 1.25rem;
  transition: var(--trans);
  position: relative;
  z-index: 1;
}

.step-card:hover .step-number {
  background: var(--grad-cta);
  border-color: transparent;
  color: var(--white);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.step-card p { font-size: .875rem; }

/* === PAYMENTS === */
.payment-section {
  padding: 3rem 0;
  background: var(--navy);
}

.payment-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.payment-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 300;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pay-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 500;
  transition: var(--trans);
}

.pay-badge:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

/* === REVIEWS === */
#reviews {
  padding: var(--section-py) 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  transition: var(--trans);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--sky-mid);
  line-height: 1;
}

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

.review-stars {
  color: var(--gold-light);
  font-size: .95rem;
  margin-bottom: .75rem;
  letter-spacing: .1em;
}

.review-text {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--grad-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.review-meta strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

.review-meta span {
  font-size: .8rem;
  color: var(--gray-500);
}

/* === CTA SECTION === */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-content { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

/* === LEAD MAGNET SECTION === */
#lead-magnet {
  padding: var(--section-py) 0;
  background: var(--sky);
}

.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead-magnet-content h2 { margin-bottom: 1rem; }
.lead-magnet-content p { margin-bottom: 1.5rem; }

.lead-points {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.lead-point {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-light);
}

.lead-point i {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: .15rem;
}

.newsletter-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.newsletter-form h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.newsletter-form p {
  font-size: .875rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
  outline: none;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-control::placeholder { color: var(--gray-500); }

.form-control.is-error { border-color: #EF4444; }

.form-error {
  font-size: .8rem;
  color: #EF4444;
  margin-top: .25rem;
  display: none;
}

.form-error.visible { display: block; }

.honey { display: none !important; }

/* === FAQ SECTION === */
#faq-home {
  padding: var(--section-py) 0;
  background: var(--white);
}

.faq-list {
  margin-top: 3rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--trans);
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: var(--trans);
}

.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* === BLOG SECTION === */
#blog-home {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.3));
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  line-height: 1.4;
  transition: var(--trans);
}

.blog-card:hover h3 { color: var(--blue); }

.blog-card p {
  font-size: .875rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--gray-500);
}

/* === SOCIAL MEDIA SECTION === */
.social-section {
  padding: 3rem 0;
  background: var(--navy-mid);
  text-align: center;
}

.social-title {
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  transition: var(--trans);
  text-decoration: none;
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* === CONTACT SECTION === */
#contact-home {
  padding: var(--section-py) 0;
  background: var(--sky);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-cta);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}

.contact-item-text a,
.contact-item-text span {
  font-size: .9rem;
  color: var(--text-light);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  flex-shrink: 0;
  margin-top: .2rem;
  cursor: pointer;
}

.form-check label {
  font-size: .8rem;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1.5;
}

/* === FOOTER === */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .brand-icon { background: rgba(184,146,42,.2); }
.footer-brand .brand-name { margin-top: .75rem; display: block; font-size: 1.3rem; }

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-top: .75rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: var(--trans);
}

.footer-links a:hover { color: var(--white); padding-left: .25rem; }

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  margin-bottom: .7rem;
  text-decoration: none;
  transition: var(--trans);
}

.footer-contact a:hover { color: var(--white); }
.footer-contact i { color: var(--gold-light); font-size: .85rem; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-counter {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.counter-value {
  color: var(--gold-light);
  font-weight: 600;
}

/* === STICKY CTA === */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--trans);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--trans);
  text-decoration: none;
}

.sticky-btn:hover {
  transform: translateY(-3px) scale(1.05);
  color: var(--white);
}

.sticky-phone { background: var(--grad-cta); }
.sticky-whatsapp { background: #25D366; }

/* === PAGE HERO (subpages) === */
.page-hero {
  background: var(--grad-hero);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 { color: var(--white); }

.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: .75rem auto 0;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* === AOS OVERRIDES === */
[data-aos] { transition-property: opacity, transform !important; }

/* Elementy krytyczne — zawsze widoczne, nawet gdy AOS nie odpalił */
.service-card,
.why-feature,
.review-card,
.blog-card,
.step-card,
.contact-item {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* === NOTIFICATION === */
.notification {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--blue);
  opacity: 0;
  transform: translateX(20px);
  transition: var(--trans);
  pointer-events: none;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.notification.success { border-color: #22C55E; }
.notification.error { border-color: #EF4444; }

.notification-title {
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .25rem;
  color: var(--navy);
}

.notification-msg {
  font-size: .85rem;
  color: var(--text-light);
  margin: 0;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,.3); }
  50%       { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
}

.animate-fade-up { animation: fadeInUp .6s ease both; }
.animate-fade    { animation: fadeIn .6s ease both; }
.animate-delay-1 { animation-delay: .15s; }
.animate-delay-2 { animation-delay: .3s; }
.animate-delay-3 { animation-delay: .45s; }
.animate-delay-4 { animation-delay: .6s; }

/* === MOBILE RESPONSIVE === */

/* ── Tablet landscape & small desktop ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-box { order: -1; }
  .lead-magnet-inner { grid-template-columns: 1fr; }

  /* Steps: 2 columns on tablet */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

/* ── Hamburger breakpoint — wcześniej niż 768px ── */
@media (max-width: 1024px) {
  /* Ukryj menu poziome, pokaż hamburger */
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  /* Pełnoekranowe menu mobilne */
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,30,58,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    z-index: 999;
    padding: 2rem;
    overflow-y: auto;
  }

  .nav-menu.open .nav-link {
    font-size: 1.4rem;
    color: var(--white);
  }

  .nav-menu.open .nav-phone {
    font-size: 1rem;
    padding: .875rem 2rem;
    margin-top: .5rem;
  }
}

/* ── Tablet portrait / large phone ── */
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  /* Hero */
  .hero-cta { flex-direction: column; align-items: flex-start; }

  /* Trust bar — 2 kolumny, wyrównane do lewej */
  .trust-bar { padding: 1.25rem 0; }

  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem 1.25rem;
    justify-items: start;
    padding: 0 .25rem;
  }

  .trust-item {
    font-size: .8rem;
    gap: .5rem;
    min-width: 0;        /* pozwala elementom się kurczyć */
  }

  .trust-item i { font-size: 1rem; }

  /* Services: single column */
  .services-grid { grid-template-columns: 1fr; }

  /* Steps: single column + pionowa linia zamiast poziomej */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps-grid::before { display: none; }

  .step-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0 1.25rem;
    text-align: left;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
  }

  .step-card:last-child { border-bottom: none; }

  /* Pionowa linia łącząca kroki */
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 31px;          /* center of 64px circle */
    top: calc(1.25rem + 64px);
    bottom: 0;
    width: 2px;
    background: var(--grad-cta);
    opacity: .15;
    z-index: 0;
  }

  .step-number {
    margin: 0;
    grid-row: 1 / 3;
    align-self: start;
  }

  .step-card h3 {
    font-size: 1rem;
    margin-bottom: .25rem;
    align-self: end;
  }

  .step-card p {
    font-size: .85rem;
    margin: 0;
    align-self: start;
  }

  /* Why features */
  .why-features { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Payment */
  .payment-inner { flex-direction: column; text-align: center; }
  .payment-methods { justify-content: center; }

  /* Sticky CTA */
  .sticky-cta { bottom: 1.25rem; right: 1.25rem; }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }

  /* Trust bar — 1 kolumna na bardzo małych ekranach */
  .trust-items {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  /* Przyciski hero — pełna szerokość */
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Notification — full width */
  .notification {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}
