/* ── 1. RESET, ZMIENNE I ZAZNACZANIE TEKSTU ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background: var(--mid); color: #fff; }
::-moz-selection { background: var(--mid); color: #fff; }

:root {
  --dark:    #1F2420;
  --mid:     #384039;
  --accent:  #4A554C;
  --light-bg: #eef2e6;
  --white:   #fdfbf6;   /* zachowane dla kompatybilności */
  --gray:    #6d766f;
  --surface: #f4f7ef;
  --surface-alt: #eef3e8;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-shadow: 0 24px 60px rgba(31, 36, 32, 0.08);
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: linear-gradient(180deg, #edf3e9 0%, #f7f9f2 100%); overflow-x: hidden; }

noscript [data-aos] { opacity: 1 !important; transform: none !important; }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--surface); border-left: 1px solid rgba(46,53,48,0.06); }
::-webkit-scrollbar-thumb { background: rgba(139,115,85,0.4); border-radius: 10px; border: 2px solid var(--surface); }
::-webkit-scrollbar-thumb:hover { background: rgba(139,115,85,0.7); }
* { scrollbar-width: thin; scrollbar-color: rgba(139,115,85,0.4) var(--surface); }

/* ── FOCUS VISIBLE (dostępność klawiatury) ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav-links a:focus-visible,
.mobile-menu a:focus-visible {
  outline-color: rgba(255,255,255,0.8);
}
.btn-green:focus-visible,
.btn-outline-white:focus-visible,
.btn-plan:focus-visible,
.btn-send:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(74, 85, 76, 0.35);
}

/* ── 2. GLOBALNE WYRÓWNANIE ── */
.about-grid, .services-head, .services-grid, .cennik-intro, .pricing-grid,
.contact-grid, .faq-inner, .news-grid, .ft-top, .ft-bottom { max-width: 1200px; margin-left: auto; margin-right: auto; }
section { padding: 100px max(6vw, calc((100vw - 1200px) / 2)); position: relative; background: transparent; }

/* ── 3. NAWIGACJA (GLASSMORPHISM) ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 max(6vw, calc((100vw - 1200px) / 2)); height: 85px; background: rgba(46,53,48,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@supports not (backdrop-filter: blur(16px)) {
  nav { background: rgba(46,53,48,0.95); }
}
nav.scrolled { height: 70px; background: rgba(46,53,48,0.95); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.logo { display: flex; align-items: center; text-decoration: none; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.02); }
.logo-wrap-text { display: flex; flex-direction: column; justify-content: center; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600; color: #fff; line-height: 1; transition: color .3s ease; }
.logo-sub { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px; color: rgba(255,255,255,0.65); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; margin-right: 20px; }
.nav-links a { text-decoration: none; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.75); transition: all .3s ease; }
.nav-links a:hover { color: #fff; transform: translateY(-1px); }
.nav-cta { background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%) !important; color: #fff !important; padding: 12px 26px; border-radius: 12px; font-weight: 600 !important; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: all 0.4s ease; }
.nav-cta:hover { box-shadow: 0 8px 25px rgba(84, 95, 84, 0.4); transform: translateY(-2px) !important; }

/* ── 4. MENU MOBILNE ── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; }
.hamburger span { display: block; height: 2px; width: 24px; background: #fff; border-radius: 2px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 99; background: rgba(46,53,48,0.98); backdrop-filter: blur(16px); padding: 24px 6vw 40px; transform: translateY(-20px); opacity: 0; transition: opacity .4s ease, transform .4s ease; pointer-events: none; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; }
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ── 5. HERO ── */
#hero { min-height: 100vh; background: linear-gradient(135deg, #1f2420 0%, #343b35 50%, #414A43 100%); display: flex; align-items: center; padding: 140px max(6vw, calc((100vw - 1200px) / 2)) 100px; position: relative; overflow: hidden; }
#hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 30%, rgba(74, 85, 76, 0.3) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(74, 85, 76, 0.2) 0%, transparent 60%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: 0.05; pointer-events: none; background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px); background-size: 80px 80px; }
.hero-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.hero-inner { max-width: 650px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 100px; padding: 8px 20px; font-size: 11px; font-weight: 700; color: #E8EBE9; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }
#hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 24px; }
#hero h1 em { font-style: italic; background: linear-gradient(135deg, #a7b5a7 0%, #ffffff 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-desc { font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.8; max-width: 540px; margin-bottom: 42px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-green { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #4A554C 0%, #1F2420 100%); color: #fff; padding: 16px 32px; border-radius: 14px; font-size: 15px; font-weight: 600; text-decoration: none; box-shadow: 0 8px 20px rgba(31, 36, 32, 0.3); border: 1px solid rgba(255,255,255,0.1); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.btn-green:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 35px rgba(74, 85, 76, 0.35), 0 5px 15px rgba(31, 36, 32, 0.4); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.03); color: #fff; backdrop-filter: blur(10px); padding: 16px 28px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.2); font-size: 15px; font-weight: 500; text-decoration: none; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

/* KOMPOZYCJA 3 SZKLANYCH PANELI */
.hero-visual { position: relative; width: 450px; height: 400px; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.glass-panel { position: absolute; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); padding: 24px; color: #fff; transition: transform 0.1s ease-out; animation: float 6s ease-in-out infinite; }
.glass-panel h4 { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.glass-panel .val { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.glass-panel-1 { width: 280px; height: 180px; top: 0%; left: 0%; z-index: 2; display: flex; flex-direction: column; justify-content: center; animation-delay: 0s; }
.glass-panel-2 { width: 120px; height: 120px; bottom: 10%; right: 0%; z-index: 3; display: flex; align-items: center; justify-content: center; animation-delay: -2s; }
.glass-panel-3 { width: 160px; height: 200px; bottom: 0%; left: 20%; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }

/* ── 6. SEKCJA O NAS ── */
#o-nas { background: var(--surface-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 20px; }
.sec-sub { font-size: 1rem; color: var(--gray); line-height: 1.75; }
.check-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; color: var(--dark); }
.check-list li::before { content: '✓'; width: 22px; height: 22px; background: linear-gradient(135deg, var(--accent), var(--mid)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.cards-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mini-card { background: #fff; border: 1px solid rgba(46,53,48,0.06); border-radius: 20px; padding: 28px 24px; box-shadow: var(--glass-shadow); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.mini-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(46,53,48,0.1); border-color: var(--accent); }
.mini-card .ic { display: flex; width: 48px; height: 48px; background: linear-gradient(135deg, #f0f2f0, #e8ebe8); border-radius: 14px; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--accent); }
.mini-card .ic svg { fill: none; stroke: currentColor; }
.mini-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.mini-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ── 7. USŁUGI ── */
#uslugi { background: var(--surface); }
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: #fff; border: 1px solid rgba(46,53,48,0.06); border-radius: 24px; padding: 36px 28px; box-shadow: var(--glass-shadow); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--mid)); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(46,53,48,0.12); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .ic { display: flex; width: 56px; height: 56px; background: linear-gradient(135deg, #f0f2f0, #e8ebe8); border-radius: 16px; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent); }
.svc-card .ic svg { width: 28px; height: 28px; stroke-width: 1.5; fill: none; stroke: currentColor; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.svc-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.svc-tag { display: inline-block; background: rgba(74, 85, 76, 0.08); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }

/* ── 8. CENNIK ── */
#cennik { background: var(--surface-alt); }
.cennik-intro { text-align: center; margin-bottom: 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.p-card { background: #fff; border: 1.5px solid rgba(46,53,48,0.1); border-radius: 28px; padding: 48px 36px; box-shadow: 0 8px 30px rgba(46,53,48,0.06); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; }
.p-card:hover { transform: scale(1.04) translateY(-8px); box-shadow: 0 28px 60px rgba(46,53,48,0.12); border-color: rgba(46,53,48,0.2); z-index: 10; }
.p-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), var(--mid)); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 20px; border-radius: 100px; white-space: nowrap; }
.p-plan { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; }
.p-price { font-family: 'Cormorant Garamond', serif; font-size: 3.8rem; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 8px; }
.p-price sup { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 500; vertical-align: super; }
.p-price sub { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--gray); }
.p-desc { font-size: 0.875rem; color: var(--gray); margin-bottom: 24px; line-height: 1.5; }
.p-divider { height: 1px; background: rgba(46,53,48,0.08); margin-bottom: 24px; }
.p-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.p-list li { font-size: 0.9rem; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.p-list li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.btn-plan { display: block; text-align: center; padding: 14px; border-radius: 14px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.btn-plan-outline { background: transparent; color: var(--dark); border: 2px solid rgba(46,53,48,0.15); }
.btn-plan-outline:hover { background: var(--surface); color: var(--dark); border-color: rgba(46,53,48,0.3); }
.btn-plan-fill { background: linear-gradient(135deg, #4A554C 0%, #1F2420 100%); color: #fff; border: none; box-shadow: 0 8px 20px rgba(74, 85, 76, 0.35); cursor: pointer; }
.btn-plan-fill:hover { box-shadow: 0 14px 30px rgba(74, 85, 76, 0.45); transform: translateY(-2px); }
.btn-plan-outline { cursor: pointer; }

/* ── MODALE CENNIKA ── */
.pricing-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); z-index: 2000; opacity: 0; visibility: hidden; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; padding: 20px; }
.pricing-modal-overlay.open { opacity: 1; visibility: visible; }
.pricing-modal { background: #fff; border-radius: 24px; padding: 40px; max-width: 600px; width: 100%; position: relative; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.pricing-modal-overlay.open .pricing-modal { transform: translateY(0); }
.pricing-modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 28px; line-height: 1; color: var(--gray); cursor: pointer; transition: color 0.3s ease; }
.pricing-modal-close:hover { color: var(--dark); }
.pricing-modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark); margin-bottom: 24px; text-align: center; font-weight: 700; }
.p-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.p-table th { text-align: left; padding: 12px 16px; background: var(--surface); color: var(--dark); font-weight: 700; font-size: 0.95rem; border-bottom: 2px solid rgba(46,53,48,0.1); }
.p-table td { padding: 14px 16px; border-bottom: 1px solid rgba(46,53,48,0.06); font-size: 0.95rem; color: var(--dark); }
.p-table tr:hover td { background: rgba(46,53,48,0.02); }
.modal-cta { text-align: center; margin-top: 30px; }

/* ── TAGI DO FORMULARZA (Usługi) ── */
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.s-tag input[type="radio"] { display: none; }
.s-tag span { display: inline-block; padding: 10px 18px; border: 1px solid rgba(46,53,48,0.15); border-radius: 12px; font-size: 13px; font-weight: 600; color: var(--gray); cursor: pointer; transition: all 0.3s ease; background: #fff; }
.s-tag span:hover { border-color: var(--accent); color: var(--dark); background: var(--surface); }
.s-tag input[type="radio"]:checked + span { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 4px 12px rgba(74, 85, 76, 0.25); }

/* ── 9. FAQ ── */
#faq { background: var(--surface); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-item { border-bottom: 1px solid rgba(46,53,48,0.08); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--dark); text-align: left; transition: color .3s ease; }
.faq-q:hover, .faq-q.open { color: var(--accent); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--accent); transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1); flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-a.open { max-height: 1000px; }
.faq-a p { padding-bottom: 20px; font-size: 0.95rem; color: var(--gray); line-height: 1.75; }


/* ── 11. KONTAKT ── */
#kontakt { background: linear-gradient(180deg, #f4f5f2 0%, var(--white) 100%); position: relative; overflow: hidden; padding: 100px max(6vw, calc((100vw - 1200px) / 2)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.contact-info .sec-label { color: var(--accent); }
.contact-info .sec-title { color: var(--dark); }
.contact-info > p { color: var(--gray); margin-bottom: 32px; line-height: 1.75; }
.c-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding: 22px; border-radius: 20px; background: #fff; border: 1px solid rgba(46,53,48,0.08); box-shadow: var(--glass-shadow); transition: all .3s ease; }
.c-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #f0f2f0, #e8ebe8); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; stroke-width: 1.5; fill: none; stroke: currentColor; }
.c-detail strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.c-detail span { font-size: 0.95rem; color: var(--dark); line-height: 1.5; }
.contact-map { margin-top: 28px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(46,53,48,0.08); }
.c-form { background: #fff; border: 1px solid rgba(46,53,48,0.08); border-radius: 28px; padding: 42px 36px; box-shadow: var(--glass-shadow); max-width: 700px; justify-self: end; width: 100%; }
.c-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.c-form label { color: var(--dark); }
.f-group { margin-bottom: 18px; }
.f-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
input, select, textarea { width: 100%; padding: 14px 16px; border: 1px solid rgba(46,53,48,0.12); border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark); background: #fbfbf8; transition: border-color .3s ease, box-shadow .3s ease; outline: none; }
select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='%236c6c6c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px 16px; padding-right: 44px; }
input[type="checkbox"] { width: 18px; height: 18px; padding: 0; border-radius: 4px; accent-color: var(--accent); }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 5px rgba(74, 85, 76, 0.2), 0 5px 20px rgba(74, 85, 76, 0.1); background: #fff; }
textarea { resize: vertical; min-height: 130px; }
.f-rodo { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.f-rodo input[type="checkbox"] { margin-top: 4px; cursor: pointer; flex-shrink: 0; }
.f-rodo-label { font-size: 12px; color: var(--dark); line-height: 1.7; font-weight: 500; text-transform: none; }
.f-rodo-label a { color: var(--accent); text-decoration: underline; }
.req { color: #c0392b; }
.hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.btn-send { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%); color: #fff; border: none; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); letter-spacing: 0.5px; box-shadow: 0 10px 25px rgba(46,53,48,0.22); margin-bottom: 10px; }
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(46,53,48,0.28); }
.btn-send:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.f-note { font-size: 12px; color: var(--gray); text-align: center; }
.f-success { display: none; text-align: center; padding: 40px 20px; }
.s-ic { margin-bottom: 20px; }
.f-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 10px; }
.f-success p { color: var(--gray); font-size: 0.95rem; }

/* ── 12. FOOTER ── */
footer { background: linear-gradient(145deg, #2f3a2e 0%, #212a1f 100%); color: #f4efdf; padding: 80px max(6vw, calc((100vw - 1200px) / 2)) 40px; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(210,180,140,0.18); }
.ft-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(210,180,140,0.75); margin-bottom: 20px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { color: rgba(238,235,221,0.85); text-decoration: none; font-size: 0.9rem; transition: color .3s ease; }
.ft-col a:hover { color: #d2b48c; }
footer a { color: rgba(238,235,221,0.85); text-decoration: none; }
footer a:hover { color: #d2b48c; }
.ft-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.8rem; color: rgba(238,235,221,0.72); }
.ft-bottom p a + a { margin-left: 24px; }

/* ── 13. PRELOADER ── */
#preloader { position: fixed; inset: 0; z-index: 9999; background: #1f2420; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s ease; }
#preloader.loaded { opacity: 0; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-content .logo-main { font-size: 48px; color: #fff; animation: pulse 1.5s ease-in-out infinite; }
.preloader-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--mid)); margin: 16px auto 0; border-radius: 2px; animation: expand 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes expand { 0%, 100% { transform: scaleX(0.3); } 50% { transform: scaleX(1); } }

/* ── 14. RESPONSYWNOŚĆ ── */
@media (max-width: 1024px) {
  .hero-wrapper { flex-direction: column; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .about-grid, .contact-grid, .faq-inner { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .pricing-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 600px) {
  .services-grid, .pricing-grid, .news-grid { grid-template-columns: 1fr; }
  .cards-2x2, .f-row, .ft-top { grid-template-columns: 1fr; }
  section { padding: 80px 5vw; }
  .c-form { padding: 32px 24px; }
  #hero { padding: 120px 5vw 40px; }
  #hero h1 { font-size: 2.4rem; }
  .p-card { padding: 40px 28px; }
}

/* ── 15. INNE WIDŻETY ── */
#scrollBar { position: fixed; top: 0; left: 0; z-index: 200; height: 4px; background: linear-gradient(90deg, var(--accent), var(--mid)); transition: width .1s linear; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: rgba(46,53,48,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); color: #fff; padding: 20px max(6vw, calc((100vw - 1200px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 24px; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); border-top: 1px solid rgba(255,255,255,0.1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; }
.cookie-banner a { color: #fff; font-weight: 700; text-decoration: underline; }
.scroll-top-btn { position: fixed; bottom: 40px; right: 40px; z-index: 900; width: 50px; height: 50px; border-radius: 50%; background: rgba(46,53,48,0.9); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scroll-top-btn:hover { background: var(--accent); transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 30px rgba(84,95,84,0.4); border-color: transparent; }
@media (max-width: 600px) { .scroll-top-btn { bottom: 24px; right: 24px; } }


/* ── DUŻE EKRANY ── */
@media (min-width: 1440px) {
  #hero h1 { font-size: 5.2rem; }
  .hero-desc { font-size: 1.25rem; max-width: 600px; }
  .glass-panel { padding: 32px; }
  .glass-panel .val { font-size: 3rem; }
  .svc-card { padding: 40px; }
  .mini-card { padding: 24px; }
}

/* ── STYLE PODSTRON ── */
.page-head { padding: 180px max(6vw, calc((100vw - 1200px) / 2)) 100px; background: linear-gradient(135deg, #1f2420 0%, #414A43 100%); color: #fff; text-align: center; position: relative; }
.page-head::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: linear-gradient(to top, var(--surface), transparent); }
.page-head h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; margin-bottom: 20px; }
.page-head p { color: rgba(255,255,255,0.8); font-size: 1.15rem; font-weight: 300; letter-spacing: 0.5px; }
.page-body { padding: 60px max(6vw, calc((100vw - 1200px) / 2)) 100px; background: var(--surface); }
.page-content { max-width: 800px; margin: 0 auto; color: var(--dark); font-size: 1.1rem; line-height: 1.8; }
.page-content h2, .page-content h3 { font-family: 'Cormorant Garamond', serif; color: var(--dark); margin: 50px 0 20px; font-weight: 700; line-height: 1.2; }
.page-content h2 { font-size: 2.2rem; border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 16px; }
.page-content p { margin-bottom: 24px; }
.page-content ul { margin-bottom: 24px; padding-left: 20px; }
.page-content li { margin-bottom: 10px; }
.back-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--dark); text-decoration: none; margin-bottom: 40px; transition: all .3s ease; padding: 10px 20px; background: rgba(74, 85, 76, 0.08); border-radius: 100px; box-shadow: 0 8px 20px rgba(46,53,48,0.08); border: 1px solid rgba(74, 85, 76, 0.18); }
.back-link:hover { color: var(--dark); transform: translateX(-3px); box-shadow: 0 10px 22px rgba(46,53,48,0.1); background: rgba(74, 85, 76, 0.12); }
.category-tag { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 999px; background: rgba(74, 85, 76, 0.12); color: var(--dark); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border: 1px solid rgba(74, 85, 76, 0.15); margin-top: 10px; }
.category-zus { background: rgba(178,143,89,0.2); color: #4c3824; border-color: rgba(178,143,89,0.26); }
.category-kadry { background: rgba(143,150,111,0.2); color: #3d442d; border-color: rgba(143,150,111,0.26); }
.category-podatki { background: rgba(153,132,91,0.2); color: #4f3e22; border-color: rgba(153,132,91,0.26); }

/* hCaptcha styling */
.h-captcha { margin: 10px 0; }

/* ── NEWSLETTER FORM ── */
.newsletter-form input, .newsletter-form button { font-family: inherit; }