/* ============================================================
   BIURO RACHUNKOWE IWONA AUGUSTYNIAK — DESIGN SYSTEM
   Wspólny arkusz stylów dla wszystkich podstron.
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0b1f3a;
  --navy-mid:    #142d52;
  --navy-light:  #1e3f6f;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   rgba(201,168,76,.08);
  --gold-border: rgba(201,168,76,.2);
  --cream:       #f8f5ef;
  --cream-dark:  #ede9e0;
  --text:        #1a1a2e;
  --text-mid:    #3d4a5e;
  --text-light:  #6b7a90;
  --white:       #ffffff;
  --radius:      4px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 12px rgba(11,31,58,.07);
  --shadow-md:   0 8px 32px rgba(11,31,58,.12);
  --shadow-lg:   0 20px 60px rgba(11,31,58,.18);
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
  --touch-min:   48px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy); }
h3 { font-size: 1.2rem; color: var(--navy); }

a { color: inherit; }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}

.container { width: 90%; max-width: 1140px; margin: 0 auto; }
section { padding: 90px 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--gold); color: var(--navy);
  padding: .7rem 1.2rem; border-radius: var(--radius);
  font-size: .85rem; font-weight: 500; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%; z-index: 9999;
  transition: width .1s linear;
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,31,58,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  max-width: 1140px; margin: 0 auto; width: 100%;
}

.logo { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.logo-img {
  width: 40px; height: 40px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.logo:hover .logo-img { transform: scale(1.06) rotate(-3deg); }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.15; }
.logo-sub { font-size: .62rem; font-weight: 300; color: var(--gold-light); letter-spacing: .14em; text-transform: uppercase; }

.nav-list { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-list a {
  color: rgba(255,255,255,.78); text-decoration: none;
  font-size: .88rem; font-weight: 400; letter-spacing: .03em;
  transition: color var(--transition); position: relative;
}
.nav-list a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-list a:hover { color: var(--white); }
.nav-list a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: .5rem 1.2rem; border-radius: var(--radius);
  font-weight: 500 !important; font-size: .85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 10px; margin-right: -10px;
  min-width: var(--touch-min); min-height: var(--touch-min);
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--navy-mid);
  padding: 0 5% 1rem;
  border-top: 1px solid rgba(201,168,76,.15);
}
.mobile-nav.open { display: flex; animation: slide-down .25s ease; }
@keyframes slide-down { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-nav a {
  color: rgba(255,255,255,.8); text-decoration: none;
  padding: .9rem 0; font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--transition);
  display: flex; align-items: center; gap: .5rem;
  min-height: var(--touch-min);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-cta {
  margin-top: .8rem;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius); justify-content: center;
  font-weight: 500; border-bottom: none !important;
}
.mobile-nav .mobile-cta:hover { background: var(--gold-light); color: var(--navy); }

/* ============================================================
   HERO (strona główna)
============================================================ */
.hero {
  background: var(--navy);
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(30,63,111,.6) 0%, transparent 70%),
    linear-gradient(135deg, #0b1f3a 0%, #0d2545 40%, #0f2d56 100%);
}
.hero-bg::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 580px; height: 580px;
  border: 1px solid rgba(201,168,76,.1); border-radius: 50%;
  animation: pulse-ring 7s ease-in-out infinite;
}
.hero-bg::after {
  content: ''; position: absolute; right: 80px; top: 80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(201,168,76,.07); border-radius: 50%;
  animation: pulse-ring 7s ease-in-out infinite reverse;
}
@keyframes pulse-ring { 0%,100% { opacity: .4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }

.hero-diagonal {
  position: absolute; bottom: 0; right: 0;
  width: 45%; height: 100%;
  background: rgba(255,255,255,.015);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; background: var(--gold); border-radius: 50%;
  opacity: 0; animation: float-up linear infinite;
}
@keyframes float-up {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  20% { opacity: .5; }
  80% { opacity: .2; }
  100% { opacity: 0; transform: translateY(-200px) translateX(var(--drift,20px)); }
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
  padding: 0 5%; margin: 0 auto; width: 100%;
  animation: hero-in 1s cubic-bezier(.4,0,.2,1) both;
}
@keyframes hero-in { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: none; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50px; padding: .4rem 1rem;
  margin-bottom: 1.6rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.6s ease-in-out infinite; }
.hero-badge span { font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 700; color: var(--white);
  line-height: 1.14; margin-bottom: 1.4rem;
}
.hero h1 em { display: block; font-style: italic; color: var(--gold-light); margin-top: .15em; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  font-weight: 300; margin-bottom: 2.4rem;
  max-width: 530px; line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--navy);
  font-weight: 500; font-size: .92rem;
  padding: .9rem 1.8rem; border-radius: var(--radius);
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: var(--touch-min);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-primary svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: rgba(255,255,255,.78);
  font-weight: 400; font-size: .9rem;
  padding: .9rem 1.6rem; border-radius: var(--radius);
  text-decoration: none; border: 1px solid rgba(255,255,255,.2);
  cursor: pointer; transition: all var(--transition);
  min-height: var(--touch-min);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; }

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3.5rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item { display: flex; flex-direction: column; gap: .1rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: .76rem; color: rgba(255,255,255,.5); font-weight: 300; letter-spacing: .04em; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 22px 5%; overflow: hidden;
}
.trust-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .82rem; color: var(--text-mid); font-weight: 400; }
.trust-icon { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: var(--cream-dark); }

/* ============================================================
   ABOUT
============================================================ */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text p { color: var(--text-mid); font-size: .97rem; line-height: 1.8; margin-bottom: 1.2rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 2rem; }
.value-item {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .9rem 1rem;
  background: var(--cream); border-radius: var(--radius-lg); border: 1px solid var(--cream-dark);
}
.value-check {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.value-check svg { width: 9px; height: 9px; stroke: var(--gold); stroke-width: 2.5; fill: none; }
.value-text { font-size: .85rem; font-weight: 400; color: var(--text-mid); line-height: 1.4; }

.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { padding: 1.8rem; border-radius: var(--radius-lg); border: 1px solid var(--cream-dark); background: var(--cream); }
.sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .8rem; }
.process-steps { display: flex; flex-direction: column; gap: .7rem; }
.process-step { display: flex; align-items: flex-start; gap: .8rem; font-size: .85rem; color: var(--text-mid); }
.step-num {
  min-width: 22px; height: 22px; background: var(--navy); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 600; flex-shrink: 0; margin-top: 1px;
}
.contact-card { background: var(--navy); border-color: transparent; }
.contact-card h4 { color: var(--white) !important; }
.contact-item {
  display: flex; align-items: center; gap: .7rem;
  font-size: .85rem; color: rgba(255,255,255,.7);
  margin-bottom: .7rem; text-decoration: none; transition: color var(--transition);
  min-height: var(--touch-min);
}
a.contact-item:hover { color: var(--gold-light); }
.contact-item svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 1.8; fill: none; flex-shrink: 0; }

/* ============================================================
   SERVICES
============================================================ */
#services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header p { color: var(--text-light); font-size: .97rem; max-width: 520px; margin: .8rem auto 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.service-card-img { width: 100%; height: 195px; overflow: hidden; position: relative; background: var(--navy-mid); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11,31,58,.55) 100%);
}
.service-card-body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.6; fill: none; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-intro { font-size: .85rem; color: var(--text-light); margin-bottom: 1.2rem; font-style: italic; }
.service-list { list-style: none; flex-grow: 1; margin-bottom: 1.8rem; }
.service-list li {
  font-size: .84rem; color: var(--text-mid);
  padding: .38rem 0; border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center; gap: .6rem;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: ''; display: inline-block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .83rem; font-weight: 500; color: var(--navy); text-decoration: none;
  letter-spacing: .02em; transition: gap var(--transition), color var(--transition);
}
.service-link:hover { color: var(--gold); gap: .7rem; }
.service-link svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ============================================================
   TEAM
============================================================ */
#team { background: var(--white); }
.team-layout { display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: center; }
.member-card {
  background: var(--cream); border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark); overflow: hidden; text-align: center;
  box-shadow: var(--shadow-md);
}
.member-photo { width: 100%; height: 310px; background: var(--navy-mid); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member-photo-placeholder { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: var(--gold); }
.member-info { padding: 1.6rem; }
.member-name { font-size: 1.2rem; margin-bottom: .2rem; }
.member-title { font-size: .82rem; color: var(--gold); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .8rem; }
.member-socials { display: flex; justify-content: center; gap: .6rem; margin-top: .4rem; }
.member-social {
  width: 40px; height: 40px; border: 1px solid var(--cream-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.member-social:hover { border-color: var(--gold); background: var(--gold-pale); }
.member-social svg { width: 13px; height: 13px; stroke: var(--text-mid); stroke-width: 1.8; fill: none; }
.team-text h2 { margin-bottom: 1.2rem; }
.team-text p { color: var(--text-mid); font-size: .97rem; line-height: 1.78; margin-bottom: 1rem; }
.credentials { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.8rem; }
.credential {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .8rem 1rem; background: var(--cream); border-radius: var(--radius);
  border-left: 3px solid var(--gold); font-size: .85rem; color: var(--text-mid);
}

/* ============================================================
   WHY US
============================================================ */
#why-us { background: var(--navy); overflow: hidden; position: relative; }
#why-us::before {
  content: ''; position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border: 1px solid rgba(201,168,76,.07); border-radius: 50%;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  position: relative; z-index: 1;
}
.why-card {
  padding: 2rem 1.8rem;
  border: 1px solid rgba(201,168,76,.12); border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 1.6; fill: none; }
.why-card h3 { font-size: 1rem; color: var(--white); margin-bottom: .6rem; }
.why-card p { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ============================================================
   CALCULATOR
============================================================ */
#calculator { background: var(--cream); }
.calc-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  padding: 2.5rem; max-width: 720px; margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.calc-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; background: var(--cream); border-radius: var(--radius-lg); padding: .3rem; }
.calc-tab {
  flex: 1; padding: .6rem .5rem; border: none; cursor: pointer;
  background: transparent; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .84rem; font-weight: 500; color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
  min-height: var(--touch-min);
}
.calc-tab.active { background: var(--navy); color: var(--white); }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.calc-field { display: flex; flex-direction: column; gap: .4rem; }
.calc-field label { font-size: .78rem; font-weight: 500; color: var(--text-mid); letter-spacing: .02em; }
.calc-field input, .calc-field select {
  padding: .75rem 1rem; border: 1px solid var(--cream-dark); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: var(--touch-min);
}
.calc-field input:focus, .calc-field select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.calc-result {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.calc-result-label { font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem; }
.calc-result-value { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold-light); font-weight: 700; }
.calc-result-sub { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .2rem; }
.calc-note { font-size: .78rem; color: var(--text-light); margin-top: 1rem; text-align: center; font-style: italic; }
.calc-btn {
  width: 100%; margin-top: 1.2rem;
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer; padding: .85rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  min-height: var(--touch-min);
}
.calc-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================================================
   REVIEWS
============================================================ */
#reviews { background: var(--navy); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header h2 { color: var(--white); }
.reviews-header .section-label { color: var(--gold); }
.reviews-header p { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: .5rem; }
.reviews-rating-bar {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 0 auto 2.5rem; padding: 1rem 2rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg); max-width: 380px;
  text-decoration: none;
  transition: border-color var(--transition);
}
a.reviews-rating-bar:hover { border-color: rgba(201,168,76,.45); }
.reviews-rating-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold-light); font-weight: 700; line-height: 1; }
.reviews-rating-detail { display: flex; flex-direction: column; gap: .2rem; }
.reviews-stars-row { display: flex; gap: .2rem; }
.reviews-stars-row svg { width: 14px; height: 14px; fill: var(--gold); stroke: none; }
.reviews-count { font-size: .78rem; color: rgba(255,255,255,.4); }

.reviews-track-wrap { overflow: hidden; position: relative; }
.reviews-track-wrap::before, .reviews-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.reviews-track-wrap::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.reviews-track-wrap::after { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.reviews-track { display: flex; gap: 1.5rem; animation: scroll-left 38s linear infinite; width: max-content; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg); padding: 1.8rem;
  min-width: 300px; max-width: 300px; flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.review-card:hover { background: rgba(255,255,255,.09); border-color: rgba(201,168,76,.3); }
.review-stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.review-stars svg { width: 13px; height: 13px; fill: var(--gold); stroke: none; }
.review-text { font-size: .87rem; color: rgba(255,255,255,.68); line-height: 1.65; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  width: 36px; height: 36px; background: var(--navy-light); border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: .82rem; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: .85rem; color: var(--white); font-weight: 500; }
.review-company { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ============================================================
   FAQ
============================================================ */
#faq { background: var(--cream); }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .6rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,.4); }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 500; color: var(--navy);
  min-height: var(--touch-min);
}
.faq-btn svg { width: 16px; height: 16px; stroke: var(--gold); stroke-width: 2; fill: none; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-btn svg { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 1.5rem 1.2rem; }
.faq-body p { font-size: .9rem; color: var(--text-mid); line-height: 1.72; }
.faq-item.open .faq-body { display: block; }

/* ============================================================
   PRICING
============================================================ */
#pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.pricing-card {
  border-radius: var(--radius-lg); border: 1px solid var(--cream-dark);
  padding: 2rem; background: var(--cream);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.pricing-card.featured {
  background: var(--navy); border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--gold); color: var(--navy);
  font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 50px;
}
.pricing-tier { font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: .4rem; }
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-desc { font-size: .84rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.55); }
.pricing-features { list-style: none; flex-grow: 1; margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .85rem; color: var(--text-mid);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.7); }
.pricing-features li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23c9a84c' stroke-width='1'/%3E%3Cpolyline points='5 8 7 10 11 6' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  margin-top: 1px;
}
.pricing-cta {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .8rem; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 500;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--cream-dark);
  background: var(--white); color: var(--navy);
  transition: all var(--transition);
  min-height: var(--touch-min);
}
.pricing-cta:hover { border-color: var(--gold); color: var(--gold); }
.pricing-card.featured .pricing-cta {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.pricing-card.featured .pricing-cta:hover { background: var(--gold-light); }
.pricing-note { text-align: center; font-size: .82rem; color: var(--text-light); margin-top: 1.5rem; font-style: italic; }

/* ============================================================
   CONTACT
============================================================ */
#contact { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info h2 { color: var(--white); margin-bottom: .8rem; }
.contact-info .section-label { color: var(--gold); }
.contact-info p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.72; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: .5rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: .9rem;
  color: rgba(255,255,255,.75); font-size: .9rem;
  text-decoration: none; transition: color var(--transition);
  padding: .5rem 0; min-height: var(--touch-min);
}
a.contact-detail:hover { color: var(--gold-light); }
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,.3); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 15px; height: 15px; stroke: var(--gold); stroke-width: 1.8; fill: none; }
.contact-hours {
  margin-top: 2rem; padding: 1.2rem 1.4rem;
  border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
}
.contact-hours h4 {
  font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem;
}
.hours-row { display: flex; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.6); padding: .3rem 0; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .8rem; font-weight: 500; color: var(--text-mid); letter-spacing: .02em; }
.form-group input, .form-group textarea, .form-group select {
  padding: .75rem 1rem; border: 1px solid var(--cream-dark); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: var(--touch-min);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group input.invalid, .form-group textarea.invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.field-error { font-size: .74rem; color: #c0392b; min-height: 1em; }
.form-consent {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .8rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1.2rem;
}
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); width: 16px; height: 16px; cursor: pointer; }
.form-consent a { color: var(--navy); font-weight: 500; }
.btn-submit {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; cursor: pointer; padding: .9rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background var(--transition), transform var(--transition);
  min-height: var(--touch-min);
}
.btn-submit:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .7; cursor: progress; transform: none; }
.btn-submit svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 2; fill: none; }
.form-spinner {
  width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-note { font-size: .74rem; color: var(--text-light); text-align: center; margin-top: .9rem; line-height: 1.5; }
.form-error-box {
  display: none; background: rgba(192,57,43,.07); border: 1px solid rgba(192,57,43,.25);
  border-radius: var(--radius); padding: .8rem 1rem; margin-bottom: 1rem;
  font-size: .82rem; color: #a8321f; line-height: 1.5;
}
.form-error-box.show { display: block; }

.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 2.5rem 2rem; gap: 1rem; }
.form-success.show { display: flex; }
.form-success-icon {
  width: 64px; height: 64px; background: rgba(11,31,58,.06);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: pop-in .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop-in { from { transform: scale(0); } to { transform: scale(1); } }
.form-success-icon svg { width: 28px; height: 28px; stroke: var(--gold); stroke-width: 2; fill: none; }
.form-success h4 { font-size: 1.15rem; color: var(--navy); }
.form-success p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }
.form-success-back {
  margin-top: .5rem; font-size: .82rem; color: var(--gold);
  cursor: pointer; text-decoration: underline; background: none; border: none; font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   QUOTE BANNER
============================================================ */
.quote-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 52px 5%;
}
.quote-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
  position: relative;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem; color: var(--gold); opacity: .25;
  line-height: .6; position: absolute; top: 0; left: -1rem;
  pointer-events: none;
}
.quote-inner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--white); font-style: italic;
  line-height: 1.55; font-weight: 600;
  padding-left: 2.4rem;
  border: none;
}
.quote-author { display: flex; align-items: center; gap: 1rem; padding-left: 2.4rem; }
.quote-avatar {
  width: 44px; height: 44px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: .9rem; font-weight: 700;
  color: var(--navy); flex-shrink: 0;
}
.quote-name { font-size: .9rem; font-weight: 500; color: var(--white); }
.quote-role { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

/* ============================================================
   DLA KOGO
============================================================ */
#dla-kogo { background: var(--cream); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.audience-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.3); }
.audience-icon {
  width: 46px; height: 46px; background: var(--navy); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.audience-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.6; fill: none; }
.audience-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.audience-card p { font-size: .84rem; color: var(--text-mid); line-height: 1.65; flex-grow: 1; margin-bottom: 1.2rem; }
.audience-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 500; color: var(--navy); text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}
.audience-link:hover { color: var(--gold); gap: .7rem; }
.audience-link svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ============================================================
   MAP
============================================================ */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 340px; border: none; display: block; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #080f1c; padding: 3rem 5%; border-top: 1px solid rgba(201,168,76,.15); }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.footer-logo-img { width: 36px; height: 36px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: .98rem; color: rgba(255,255,255,.7); }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.6; max-width: 260px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.footer-links { display: flex; flex-direction: column; gap: .35rem; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color var(--transition); padding: .15rem 0; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.07);
}
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.28); }
.footer-bottom-links { display: flex; gap: 1.2rem; }
.footer-bottom-links a { font-size: .76rem; color: rgba(255,255,255,.28); text-decoration: none; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   FLOATING ELEMENTS
============================================================ */
.floating-cta {
  position: fixed; bottom: 88px; right: 24px; z-index: 199;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 50px; padding: .7rem 1.2rem .7rem .9rem;
  display: flex; align-items: center; gap: .5rem;
  font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 500;
  cursor: pointer; box-shadow: 0 6px 22px rgba(201,168,76,.45);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0; pointer-events: none; transform: translateY(8px);
}
.floating-cta.show { opacity: 1; pointer-events: all; transform: none; }
.floating-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.floating-cta svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; }
.floating-cta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--navy); flex-shrink: 0; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

.whatsapp-btn {
  position: fixed; bottom: 84px; left: 24px; z-index: 199;
  width: 48px; height: 48px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  text-decoration: none;
}
.whatsapp-btn.show { opacity: 1; pointer-events: all; transform: none; }
.whatsapp-btn:hover { background: #20c05b; transform: translateY(-2px); }
.whatsapp-btn svg { width: 24px; height: 24px; fill: white; }

#scrollToTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 48px; height: 48px; background: var(--gold); border: none; border-radius: 50%;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
  transition: background var(--transition), transform var(--transition);
}
#scrollToTop:hover { background: var(--gold-light); transform: translateY(-2px); }
#scrollToTop svg { width: 16px; height: 16px; stroke: var(--navy); stroke-width: 2.5; fill: none; }

.quick-contact-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.quick-contact-inner { display: flex; }
.quick-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .3rem; padding: .7rem .5rem;
  text-decoration: none; color: rgba(255,255,255,.75);
  font-size: .65rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition), color var(--transition);
  min-height: 58px;
}
.quick-btn:last-child { border-right: none; }
.quick-btn:hover, .quick-btn:active { background: rgba(255,255,255,.07); color: var(--gold-light); }
.quick-btn.highlight { background: var(--gold); color: var(--navy); }
.quick-btn.highlight:hover { background: var(--gold-light); }
.quick-btn svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.quick-btn.highlight svg { stroke: var(--navy); }

/* ============================================================
   COOKIE BANNER
============================================================ */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9000; max-width: 600px; width: calc(100% - 32px);
  background: var(--navy); border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  animation: slide-up-banner .4s cubic-bezier(.4,0,.2,1);
}
@keyframes slide-up-banner { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
#cookie-banner.hidden { display: none; }
#cookie-banner p { font-size: .82rem; color: rgba(255,255,255,.65); flex: 1; line-height: 1.5; }
#cookie-banner p a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: .5rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold); color: var(--navy); border: none; cursor: pointer;
  padding: .55rem 1.1rem; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 500;
  transition: background var(--transition); min-height: 40px;
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.15); cursor: pointer;
  padding: .55rem 1rem; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .82rem;
  transition: all var(--transition); min-height: 40px;
}
.cookie-decline:hover { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.8); }

/* ============================================================
   FADE UP — z fallbackiem dla braku JS
============================================================ */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .6s ease-out, transform .6s ease-out; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
/* Gdy JavaScript jest wyłączony — treść zawsze widoczna */
.no-js .fade-up { opacity: 1; transform: none; }

/* ============================================================
   PODSTRONY USŁUG — PAGE HERO
============================================================ */
.page-hero {
  background: var(--navy);
  padding: 60px 5%;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; right:-60px; top:-60px;
  width:340px; height:340px;
  border: 1px solid rgba(201,168,76,.1); border-radius: 50%;
}
.page-hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index:1; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .8rem; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.3); font-size: .8rem; }
.breadcrumb-current { color: var(--gold); font-size: .8rem; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; color: var(--white); margin-bottom: .8rem;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 1rem; font-weight: 300; max-width: 560px; line-height: 1.72; }

.page-content { padding: 70px 5%; max-width: 1140px; margin: 0 auto; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem; align-items: start;
}
.service-sections { display: flex; flex-direction: column; gap: 2.5rem; }
.service-block {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  position: relative;
}
.service-block::before {
  content: '';
  position: absolute; left: 0; top: 1.5rem; bottom: 1.5rem;
  width: 3px; background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 0 2px 2px 0;
}
.service-block.plain { background: var(--white); border-color: rgba(201,168,76,.25); }
.service-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--navy);
  margin-bottom: 1rem; padding-left: .2rem;
}
.service-block ul { list-style: none; padding-left: .2rem; }
.service-block li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .9rem; color: var(--text-mid);
  padding: .45rem 0;
  border-bottom: 1px solid var(--cream-dark);
  line-height: 1.5;
}
.service-block li:last-child { border-bottom: none; }
.service-block li::before {
  content: '';
  display: inline-block; width: 5px; height: 5px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%; margin-top: 7px;
}

/* Sidebar podstron */
.sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.sidebar-card.subpage {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  background: var(--cream);
}
.sidebar-card.subpage.dark { background: var(--navy); border-color: transparent; }
.sidebar-card.subpage h4 {
  font-family: 'Playfair Display', serif;
  font-size: .98rem; color: var(--navy);
  margin-bottom: 1rem;
}
.sidebar-card.subpage.dark h4 { color: var(--white); }
.sidebar .contact-item svg { stroke: var(--gold); }

.other-services { display: flex; flex-direction: column; gap: .5rem; }
.other-service-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: .87rem; color: var(--text-mid);
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.other-service-link:hover { border-color: var(--gold); color: var(--navy); transform: translateX(2px); }
.other-service-link svg { width: 12px; height: 12px; stroke: var(--gold); stroke-width: 2; fill: none; }

.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,.2);
}
.cta-card h4 { font-family:'Playfair Display',serif; color:var(--white); font-size:1.05rem; margin-bottom:.6rem; }
.cta-card p { font-size: .87rem; color: rgba(255,255,255,.65); margin-bottom: 1.2rem; line-height: 1.6; }
.btn-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold); color: var(--navy);
  font-weight: 500; font-size: .87rem;
  padding: .75rem 1.4rem;
  border-radius: var(--radius); text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  min-height: var(--touch-min);
}
.btn-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-cta svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; fill: none; }

/* Oś czasu kroków (rejestracja) */
.steps-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps-timeline::before {
  content:''; position:absolute; left: 21px; top:32px; bottom:32px; width:2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}
.step-card { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.4rem 0; position: relative; }
.step-number {
  min-width: 44px; height: 44px;
  background: var(--navy); color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  flex-shrink: 0; z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.step-body { padding-top: .2rem; }
.step-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .4rem; }
.step-body p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   POLITYKA PRYWATNOŚCI — strona tekstowa
============================================================ */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; color: var(--navy); margin: 2rem 0 .8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-mid); font-size: .92rem; line-height: 1.78; margin-bottom: 1rem; }
.legal-content ul { margin: 0 0 1rem 1.2rem; }
.legal-content li { color: var(--text-mid); font-size: .92rem; line-height: 1.7; margin-bottom: .4rem; }
.legal-content a { color: var(--navy); font-weight: 500; }
.legal-updated { font-size: .82rem; color: var(--text-light); font-style: italic; margin-bottom: 2rem; }

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 980px) {
  .about-grid, .team-layout, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .team-layout { grid-template-columns: 1fr; }
  .member-card { max-width: 340px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .nav-list { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  /* Podstrony — sidebar pod treścią, NIE nad nią */
  .service-detail-grid { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .container { width: 92%; }

  .hero { min-height: auto; padding: 60px 0 56px; }
  .hero-bg::before, .hero-bg::after { display: none; }
  .hero-diagonal { display: none; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 1rem; }
  .hero-desc { font-size: .95rem; margin-bottom: 1.8rem; }
  .hero-badge { margin-bottom: 1.2rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.5rem; padding-top: 2rem; }
  .stat-num { font-size: 1.8rem; }

  .trust-strip { padding: 16px 5%; }
  .trust-inner { gap: 1rem 1.5rem; }
  .trust-divider { display: none; }
  .trust-item { font-size: .78rem; }

  .about-values { grid-template-columns: 1fr; }
  .about-sidebar { order: -1; }
  .about-sidebar .contact-card { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 180px; }
  .audience-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.5rem; }

  .calc-wrap { padding: 1.5rem; }
  .calc-fields { grid-template-columns: 1fr; }
  .calc-tabs { flex-direction: column; gap: .3rem; }
  .calc-tab { text-align: left; padding: .8rem 1rem; }
  .calc-result { flex-direction: column; gap: .8rem; }
  .calc-result > div:last-child { text-align: left; }

  .review-card { min-width: 270px; max-width: 270px; }
  .reviews-rating-bar { max-width: 100%; }

  .faq-btn { font-size: .88rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem; }
  .contact-info h2 { font-size: 1.6rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .quote-mark { font-size: 4rem; }
  .quote-inner blockquote { font-size: 1.1rem; padding-left: 1.8rem; }
  .quote-author { padding-left: 1.8rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .footer { padding-bottom: 80px; }

  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .map-section iframe { height: 240px; }

  .quick-contact-bar { display: block; }
  .floating-cta { display: none !important; }
  #scrollToTop { bottom: 72px; }
  .whatsapp-btn { bottom: 72px; }

  .page-content { padding: 40px 5%; }
  .page-hero { padding: 40px 5%; }
  .service-block { padding: 1.5rem; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 1.5rem; }
}

/* ============================================================
   DOSTĘPNOŚĆ — ograniczenie ruchu
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* ── Honeypot antyspamowy — niewidoczne dla ludzi, dostępne dla botów ── */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Facade mapy Google — lekki placeholder ładowany po kliknięciu ── */
.map-facade {
  width: 100%; height: 340px;
  border: none; display: block; cursor: pointer;
  padding: 0; margin: 0; font: inherit;
  background:
    radial-gradient(ellipse 60% 70% at 50% 40%, var(--navy-light) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  transition: filter .25s ease;
}
.map-facade:hover { filter: brightness(1.12); }
.map-facade-inner {
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .55rem;
  text-align: center; padding: 1rem;
}
.map-facade-pin {
  width: 46px; height: 46px;
  fill: none; stroke: var(--gold); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.map-facade-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: #fff;
}
.map-facade-hint {
  font-size: .85rem; color: rgba(255,255,255,.6);
}
@media (max-width: 768px) {
  .map-facade { height: 240px; }
}

/* ── Punkt pośredni dla tabletów (600–860 px) ──
   Addytywny przełam: doprecyzowuje tylko elementy, które między
   istniejącymi punktami 600 i 980 px bywają zbyt ciasne.
   Nie modyfikuje żadnych istniejących reguł. */
@media (max-width: 860px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .calc-fields { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG — style dodane dla sekcji bloga
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
  max-width: 1140px;
  margin: 0 auto;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11,31,58,.12);
}
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: .6rem;
}
.blog-card h2 {
  font-size: 1.18rem; color: var(--navy); line-height: 1.4;
  margin-bottom: .6rem;
}
.blog-card p {
  font-size: .9rem; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 1.1rem; flex: 1;
}
.blog-card-meta {
  font-size: .78rem; color: var(--text-light);
  margin-bottom: 1rem;
}
.blog-card .service-link { margin-top: auto; }

/* Artykuł — treść */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 {
  font-size: 1.45rem; color: var(--navy);
  margin: 2.4rem 0 .9rem; line-height: 1.35;
}
.article-body h3 {
  font-size: 1.12rem; color: var(--navy);
  margin: 1.8rem 0 .7rem;
}
.article-body p {
  color: var(--text-mid); font-size: .96rem;
  line-height: 1.85; margin-bottom: 1.1rem;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.2rem 1.3rem;
}
.article-body li {
  color: var(--text-mid); font-size: .96rem;
  line-height: 1.8; margin-bottom: .5rem;
}
.article-body strong { color: var(--navy); }
.article-meta {
  font-size: .82rem; color: var(--text-light);
  margin-bottom: 1.8rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--cream-dark);
}
.article-lead {
  font-size: 1.06rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 1.6rem; font-weight: 400;
}
.article-cta {
  background: var(--navy); border-radius: 12px;
  padding: 2rem; margin: 2.8rem auto 0; max-width: 760px;
  text-align: center;
}
.article-cta h3 { color: #fff; font-size: 1.2rem; margin-bottom: .6rem; }
.article-cta p { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 1.3rem; line-height: 1.7; }
.article-related {
  max-width: 760px; margin: 2.8rem auto 0;
  padding-top: 1.8rem; border-top: 1px solid var(--cream-dark);
}
.article-related h4 {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.article-related a {
  display: block; color: var(--navy); font-weight: 500;
  font-size: .95rem; padding: .5rem 0; text-decoration: none;
  transition: color var(--transition);
}
.article-related a:hover { color: var(--gold); }
