/* ===========================
   AJK Księgowość - styl.css
   Jasny, elegancki motyw: ciepłe tło + zieleń + złoto
   =========================== */

:root{
  --green: #27502c;
  --gold: #be9311;

  /* tła (nie czysta biel) */
  --bg: #f6f2ea;         /* ciepła kość słoniowa */
  --surface: #fbf8f2;    /* jaśniejsza „karta” */
  --surface-2: #f1ece2;  /* lekko ciemniejsze tło sekcji */

  --text: #1f2a22;
  --muted: #5b6a60;

  --border: rgba(39,80,44,0.14);
  --shadow: 0 16px 40px rgba(0,0,0,0.08);

  --radius: 18px;
  --radius-sm: 12px;

  --max: 1120px;

  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;


  /* złoty gradient (akcent) */
  --gold-grad: linear-gradient(135deg, #f2d48a 0%, #be9311 45%, #8e6a19 100%);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(190,147,17,0.10), transparent 55%),
              radial-gradient(1000px 600px at 100% 0%, rgba(39,80,44,0.10), transparent 45%),
              var(--bg);
  color: var(--text);
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}
h1, h2, h3, h4{
  font-family: var(--font-heading);
}

/* ======= Header / Nav ======= */
header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,242,234,0.72);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width: 280px;
}

.brand img{
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .title strong{
  font-size: 14px;
  letter-spacing:0.3px;
  color: var(--green);
}
.brand .title span{
  font-size: 12px;
  color: var(--muted);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
}

.nav-links a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav-links a:hover{
  background: rgba(39,80,44,0.08);
  color: var(--green);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  font-weight: 600;
  font-size: 14px;
  cursor:pointer;
  transition: 0.2s ease;
}

.btn:hover{ transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(
    135deg,
    #27502c 0%,
    #3f6f49 100%
  );
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 500;
}

.btn {
  border-radius: 999px;
   
}

.btn-primary:hover{
  filter: saturate(1.05);
}

.burger{
  display:none;
  border:1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
}

/* Mobile menu panel */
.mobile-panel{
  display:none;
  padding: 12px 0 16px;
}
.mobile-panel a{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--muted);
}
.mobile-panel a:hover{
  background: rgba(39,80,44,0.08);
  color: var(--green);
}

/* ======= Hero ======= */
.hero{
  padding: 36px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items:stretch;
}

.card{
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
/* Elementy, które nadal mają wyglądać jak eleganckie panele */
.feature, .step, .price, .content, .hero-media{
  background: rgba(251,248,242,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.hero-copy{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px 6px;
}
.hero-copy{
  padding: 30px;
  position:relative;
  overflow:hidden;
}
.hero-copy:before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(190,147,17,0.25), transparent 60%);
  border-radius: 999px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 12px;
  color: var(--green);
  background: rgba(39,80,44,0.08);
  border: 1px solid rgba(39,80,44,0.14);
  padding: 6px 10px;
  border-radius: 999px;
}
.kicker i{
  width:10px;
  height:10px;
  border-radius:99px;
  background: var(--gold-grad);
  display:inline-block;
}

.hero-copy h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.1;
  letter-spacing:-0.5px;
}
.hero-copy p{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}
.pill{
  font-size: 13px;
  color: var(--green);
  border: 1px dashed rgba(39,80,44,0.25);
  background: rgba(39,80,44,0.05);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero-media{
  padding: 0;
  overflow:hidden;
  position:relative;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height: 320px;
  filter: contrast(1.02) saturate(1.02);
}
.hero-media:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height: 44%;
  background: linear-gradient(to top, rgba(246,242,234,0.92), transparent);
}

/* ======= Section ======= */
.section{
  padding: 32px 0;
}
.section.alt{
  background: linear-gradient(180deg, transparent, rgba(39,80,44,0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 16px;
}
.section-head h2{
  margin:0;
  font-size: 22px;
  color: var(--green);
  letter-spacing:-0.2px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  max-width: 560px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature{
  padding: 18px;
}
.feature .icon{
  width:44px;
  height:44px;
  border-radius: 14px;
  background: rgba(190,147,17,0.14);
  border: 1px solid rgba(190,147,17,0.30);
  display:grid;
  place-items:center;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 800;
}
.feature h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.feature p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

/* ======= Steps ======= */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step{
  padding: 16px;
}
.step .num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--gold-grad);
  color: #1b1b1b;
  font-weight: 800;
  display:grid;
  place-items:center;
  margin-bottom: 10px;
}
.step h4{ margin: 0 0 6px; }
.step p{ margin:0; color: var(--muted); font-size: 14px; }

/* ======= Pricing ======= */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price{
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.price.featured{
  border: 1px solid rgba(190,147,17,0.40);
}
.badge{
  position:absolute;
  top:14px;
  right:14px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(190,147,17,0.16);
  border: 1px solid rgba(190,147,17,0.30);
  color: var(--green);
  font-weight:700;
}
.price h3{ margin: 6px 0 6px; }
.price .from{
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 10px;
}
.price .value{
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 10px;
}
.price ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.price li{ margin: 8px 0; }

.price .actions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ======= Content pages ======= */
.page-hero{
  padding: 26px 0 6px;
}
.page-hero .wrap{
  padding: 22px;
}
.breadcrumb{
  color: var(--muted);
  font-size: 13px;
}
.page-hero h1{
  margin: 8px 0 6px;
  color: var(--green);
}
.page-hero p{ margin:0; color: var(--muted); }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:stretch;
}
.content{
  padding: 18px;
}
.content h3{ margin-top: 0; color: var(--green); }
.content p, .content li{ color: var(--muted); }
.content ul{ margin: 10px 0 0; }

/* ======= Form ======= */
form{
  display:grid;
  gap: 10px;
}
label{
  font-size: 13px;
  color: var(--muted);
}
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(251,248,242,0.92);
  outline:none;
  font-size: 14px;
}
textarea{ min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(190,147,17,0.55);
  box-shadow: 0 0 0 4px rgba(190,147,17,0.12);
}

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

.note{
  font-size: 13px;
  color: var(--muted);
}

/* ======= Footer ======= */
footer{
  padding: 28px 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 16px;
}
.footer-title{
  color: var(--green);
  font-weight: 800;
  margin: 0 0 8px;
}
.small{
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.footer-links a{
  display:block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-links a:hover{ color: var(--green); }

.copy{
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* ======= Responsive ======= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media img{ min-height: 260px; }
  .grid-3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}
  .brand img{
    width: 52px;
    height: 52px;
  }
@media (max-width: 760px){
  .nav-links, .nav-cta .btn:not(.btn-primary){ display:none; }
  .burger{ display:inline-flex; }
  .mobile-panel{ display:block; }
  .form-row{ grid-template-columns: 1fr; }
}
/* ===== HERO: panel z gradientem zielony -> krem (Wersja 2) ===== */
.hero-clean{
  padding: 44px 0 24px;
}

.hero-clean .hero-grid{
  background: linear-gradient(135deg,
    rgba(39,80,44,0.16) 0%,
    rgba(39,80,44,0.06) 32%,
    rgba(251,248,242,0.96) 72%,
    rgba(246,242,234,0.98) 100%
  );
  border: 1px solid rgba(39,80,44,0.16);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  padding: 26px;
}

.hero-simple{
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.hero-clean .hero-copy{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* usuwa "kółko"/nakładkę jeśli coś zostało w starym CSS */
.hero-clean .hero-copy:before{
  display: none !important;
}

.hero-clean h1{
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.3px;
  font-weight: 600;
}

.hero-clean p{
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 48ch;
}

.hero-media-round{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(39,80,44,0.14);
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
  background: rgba(251,248,242,0.8);
}

.hero-media-round img{
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 980px){
  .hero-clean .hero-grid{ padding: 18px; }
  .hero-simple{ grid-template-columns: 1fr; }
  .hero-media-round img{ height: 300px; }
}
.hero-actions .btn-primary{
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 999px;
}
.hero-media-round img{
  filter: contrast(1.02) saturate(0.98);
}

/* ===== Sekcja pod hero (bez kafli, premium) ===== */

.section-under-hero{
  padding: 56px 0 24px;
}

.under-hero-head{
  max-width: 560px;
  margin-bottom: 34px;
}

.under-hero-head h2{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.3px;
}

.under-hero-head p{
  margin: 0;
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
}

.under-hero-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.under-hero-item{
  max-width: 340px;
}

.under-hero-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
  background: linear-gradient(
    135deg,
    rgba(39,80,44,0.14),
    rgba(251,248,242,0.9)
  );
  border: 1px solid rgba(39,80,44,0.18);
}

.under-hero-item h3{
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--green);
}

.under-hero-item p{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* mobile */
@media (max-width: 980px){
  .under-hero-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .under-hero-item{
    max-width: 100%;
  }
}
/* Globalny oddech */
.section {
  padding: 72px 0;
}

.section.alt {
  padding: 80px 0;
}

.container {
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Lepsze odstępy między nagłówkami a tekstem */
.section-head h2,
.under-hero-head h2 {
  margin-bottom: 14px;
}

.section-head p,
.under-hero-head p {
  max-width: 640px;
  line-height: 1.7;
}
:root {
  --green-soft: #eaf3ee;
  --green-main: #27502c;
  --gold-soft: #f3e7c3;
  --text-main: #2a2a2a;
  --text-muted: #6b6b6b;
}

body {
  color: var(--text-main);
}

p {
  color: var(--text-muted);
}
.hero-media img {
  transition: transform 0.6s ease;
}

.hero-media img:hover {
  transform: scale(1.03);
}

/* Karty usług jak na inspiracji */
.service-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:22px;
}

.service-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  transform:translateY(0);
}

.service-media{
  position:relative;
  height:200px;
  overflow:hidden;
}

.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.service-badge{
  position:absolute;
  left:50%;
  bottom:-26px;
  transform:translateX(-50%);
  width:76px;
  height:76px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.35);
}

.service-badge svg{
  width:34px;
  height:34px;
  color:#fff;
}

.service-badge--green{
  background:#27502c;
}

.service-badge--gold{
  background: linear-gradient(135deg, #f0c56a 0%, #be9311 100%);
}

.service-body{
  padding:44px 20px 20px; /* więcej miejsca przez ikonkę nachodzącą */
  text-align:center;
}

.service-body h3{
  margin:0 0 10px;
  color:var(--green, #27502c);
  font-size:20px;
}

.service-body p{
  margin:0 0 12px;
  line-height:1.7;
}

.service-link{
  display:inline-block;
  font-weight:600;
  color:var(--green, #27502c);
  text-decoration:none;
}

.service-link:hover{
  text-decoration:underline;
}

/* ANIMACJA "POJAWIANIA SIĘ" */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* responsywność */
@media (max-width: 980px){
  .service-cards{ grid-template-columns:1fr; }
  .service-media{ height:220px; }
}
/* --- FIX: badge/ikonka na kartach usług --- */

/* dajemy miejsce na badge: zdjęcie kończy się wcześniej */
.service-media{
  height: 185px;            /* było 200px */
  padding-bottom: 34px;     /* tworzy „pas” pod badge */
  background: #ffffff;      /* żeby przejście było czyste */
}

/* obrazek ma zaokrąglony dół, żeby nie wyglądało jak ucięcie */
.service-media img{
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

/* badge siedzi idealnie na styku zdjęcia i treści */
.service-badge{
  bottom: 10px;               /* zamiast -26px */
  width: 70px;
  height: 70px;
  border-radius: 16px;

  /* ten trik sprawia, że wygląda „osadzony” */
  border: 8px solid #ffffff;  /* biały ring jak na inspiracji */
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

/* ikonka trochę większa i wycentrowana optycznie */
.service-badge svg{
  width: 32px;
  height: 32px;
}

/* treść trochę wyżej (bo badge już ma miejsce) */
.service-body{
  padding-top: 26px;          /* było 44px */
}
.service-badge{
  backdrop-filter: blur(6px);
}
/* Proces współpracy – wersja premium: oś */
.process{
  position: relative;
  margin-top: 26px;
  padding: 18px 0 6px;
}

.process-line{
  position: absolute;
  left: 12px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, rgba(39,80,44,.25), rgba(190,147,17,.25));
  border-radius: 99px;
}

.process-steps{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  padding-left: 28px;
}

.process-step{
  position: relative;
  padding: 16px 16px 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(39,80,44,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.process-dot{
  position: absolute;
  left: -34px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: #1f3f25;
  background: linear-gradient(135deg, #f3e7c3 0%, #eaf3ee 100%);
  border: 1px solid rgba(39,80,44,.18);
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
}

.process-step h4{
  margin: 0 0 8px;
  color: var(--green, #27502c);
}

.process-step p{
  margin: 0;
  line-height: 1.7;
}

/* Mobile: jeden słupek */
@media (max-width: 900px){
  .process-steps{ grid-template-columns: 1fr; }
}
/* Proces – wersja czysta, bez pionowej osi */
.process2{
  margin-top: 24px;
}

/* Delikatna linia z „punktami” nad krokami */
.process2-top{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 14px;
  align-items: center;
}

.process2-top span{
  height: 2px;
  background: linear-gradient(90deg, rgba(39,80,44,.22), rgba(190,147,17,.22));
  border-radius: 99px;
  position: relative;
}

.process2-top span::after{
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f7f4ec;
  border: 2px solid rgba(39,80,44,.28);
}

/* KROKI */
.process2-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process2-step{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(39,80,44,.12);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  min-width: 0; /* ważne: zapobiega dziwnym łamaniom */
}

.process2-num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: #1f3f25;
  background: linear-gradient(135deg, #f3e7c3 0%, #eaf3ee 100%);
  border: 1px solid rgba(39,80,44,.18);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  margin-bottom: 10px;
}

.process2-step h4{
  margin: 0 0 8px;
  color: var(--green, #27502c);
  font-size: 18px;
  line-height: 1.2;
}

.process2-step p{
  margin: 0;
  line-height: 1.7;
}

/* Responsywność */
@media (max-width: 1100px){
  .process2-grid{ grid-template-columns: repeat(2, 1fr); }
  .process2-top{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px){
  .process2-grid{ grid-template-columns: 1fr; }
  .process2-top{ display:none; }
}
/* === Sekcja ZAUFANIE (parallax + 2 panele) === */
.trust{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  background: #f5f0e6;
  min-height: 360px;
}

/* tło/parallax */
.trust-media{
  position:absolute;
  inset:0;
  transform: translateY(0);
  will-change: transform;
}

.trust-media img{
  width:100%;
  height:110%;              /* ważne: zapas na ruch */
  object-fit: cover;
  display:block;
  filter: saturate(0.95) contrast(0.98);
}

/* delikatna zasłona dla czytelności */
.trust::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(247,244,236,.10) 0%, rgba(247,244,236,.35) 55%, rgba(247,244,236,.10) 100%);
  pointer-events:none;
}

/* panele na wierzchu */
.trust-panels{
  position: relative;
  z-index: 2;
  display:flex;
  gap:22px;
  align-items:center;
  padding: 36px;
}

/* złoty panel */
.trust-panel{
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

.trust-panel--gold{
  background: linear-gradient(135deg, #f0c56a 0%, #be9311 100%);
  color:#111;
  padding: 22px 26px;
  min-width: 310px;
}

.trust-years{
  display:flex;
  align-items:center;
  gap:18px;
}

.trust-years__num{
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.trust-years__text{
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 10px 20px rgba(0,0,0,.18);
}

/* zielony panel */
.trust-panel--green{
  background: #27502c;
  color:#fff;
  padding: 26px 28px;
  max-width: 720px;
  width: 100%;
}

.trust-panel--green h3{
  margin: 0 0 12px;
  color:#fff;
  font-size: 26px;
}

.trust-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.trust-list li{
  position:relative;
  padding-left: 28px;
  line-height: 1.6;
  opacity: .95;
}

.trust-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: #e9f4ee;
  font-weight: 800;
}

/* desktop: pozycjonowanie jak na inspiracji (panele lekko "nachodzą") */
@media (min-width: 980px){
  .trust-panels{
    padding: 40px 46px;
  }
  .trust-panel--gold{
    transform: translateX(20px);
  }
  .trust-panel--green{
    transform: translateX(-10px);
  }
}

/* mobile: jeden pod drugim */
@media (max-width: 980px){
  .trust-panels{
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
  }
  .trust-panel--gold{
    min-width: auto;
    width: 100%;
  }
  .trust-years__num{ font-size: 56px; }
  .trust-years__text{ font-size: 22px; }
}
.process2-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.process2-step{
  min-width: 0 !important;
}
/* === GLOBAL FONT FIX (ujednolicenie czcionek) === */
:root{
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-heading: var(--font-sans); /* możesz później podmienić nagłówki na inną */
}

html, body{
  font-family: var(--font-sans) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-heading) !important;
}

button, input, select, textarea{
  font-family: var(--font-sans) !important;
}
/* === Sekcja: Dla kogo (ładna prezentacja) === */
.audience{
  margin-top: 8px;
}

.audience-head{
  max-width: 820px;
}

.eyebrow{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: #27502c;
  background: rgba(39,80,44,.10);
  border: 1px solid rgba(39,80,44,.14);
  margin: 0 0 14px;
}

.audience-head h2{
  margin: 0 0 10px;
  line-height: 1.15;
}

.audience-head .lead{
  margin: 0;
  opacity: .9;
  line-height: 1.7;
}

.audience-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.audience-card{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(39,80,44,.12);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.audience-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border-color: rgba(190,147,17,.30);
}

.audience-icon{
  display:inline-grid;
  place-items:center;
  height: 40px;
  min-width: 56px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: #1f3f25;
  background: linear-gradient(135deg, #f3e7c3 0%, #eaf3ee 100%);
  border: 1px solid rgba(39,80,44,.18);
  margin-bottom: 12px;
}

.audience-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: #27502c;
}

.audience-card p{
  margin: 0;
  line-height: 1.7;
  opacity: .92;
}

/* RWD */
@media (max-width: 1100px){
  .audience-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px){
  .audience-grid{ grid-template-columns: 1fr; }
}
/* Ujednolicenie nagłówków sekcji */
.section h2{
  color: #27502c; /* ten sam zielony co reszta */
}
/* === CENNIK === */
.page-title{ margin: 0 0 10px; }
.pricing-hero{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 18px;
  align-items: start;
}
.pricing-hero .lead{ margin: 0; line-height: 1.8; opacity: .92; max-width: 64ch; }

.pricing-hero-cta{ margin-top: 14px; display:flex; gap: 10px; flex-wrap:wrap; }

.pricing-note{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(39,80,44,.12);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.pricing-note-title{ margin: 0 0 10px; font-weight: 800; color: #27502c; }
.pricing-bullets{ margin:0; padding-left: 18px; display:grid; gap:8px; line-height:1.7; }

.pricing-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(39,80,44,.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.pricing-table-wrap{ overflow:auto; border-radius: 14px; border: 1px solid rgba(39,80,44,.10); }
.pricing-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: rgba(255,255,255,.86);
}
.pricing-table thead th{
  text-align: left;
  padding: 12px 12px;
  color: #27502c;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(243,231,195,.75) 0%, rgba(234,243,238,.75) 100%);
}
.pricing-table tbody td{
  padding: 12px 12px;
  border-top: 1px solid rgba(39,80,44,.08);
}
.pricing-table tbody tr:hover td{ background: rgba(39,80,44,.04); }
.muted-row td{ opacity: .92; }

.pricing-small-note{
  margin-top: 12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: rgba(20,20,20,.78);
}
.pricing-small-note .dot{
  width: 10px; height: 10px; border-radius: 99px;
  margin-top: 7px;
  background: #be9311;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
}

.list-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.list-item{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(39,80,44,.10);
  background: rgba(255,255,255,.85);
}
.list-item .li-title{ font-weight: 700; color: rgba(20,20,20,.92); }
.list-item .li-price{ font-weight: 800; color:#27502c; white-space: nowrap; }
.list-item.muted .li-price{ color:#6b6b6b; }

.cta-strip{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(190,147,17,.25);
  background: linear-gradient(135deg, rgba(243,231,195,.60) 0%, rgba(234,243,238,.60) 100%);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-strip-title{ margin: 0 0 4px; font-weight: 900; color:#27502c; }
.cta-strip-text{ margin: 0; opacity: .9; max-width: 70ch; }

@media (max-width: 980px){
  .pricing-hero{ grid-template-columns: 1fr; }
  .list-grid{ grid-template-columns: 1fr; }
  .pricing-table{ min-width: 0; }
}
/* === O MNIE === */
.breadcrumbs{
  font-size: 13px;
  opacity: .8;
  display:flex;
  gap: 8px;
  align-items:center;
  margin-bottom: 16px;
}
.breadcrumbs a{ color: inherit; text-decoration: none; }
.breadcrumbs a:hover{ text-decoration: underline; }

.about-hero{
  display:grid;
  grid-template-columns: 1.2fr .95fr;
  gap: 22px;
  align-items: start;
  margin-top: 8px;
}

.about-copy h1{
  margin: 0 0 10px;
  color:#27502c;
}

.about-lead{
  margin: 0 0 14px;
  line-height: 1.8;
  font-size: 18px;
  max-width: 70ch;
  opacity: .92;
}

.about-highlights{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.about-chip{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color:#27502c;
  background: linear-gradient(135deg, rgba(243,231,195,.55) 0%, rgba(234,243,238,.65) 100%);
  border: 1px solid rgba(39,80,44,.12);
}

.about-text p{
  margin: 0 0 10px;
  line-height: 1.8;
  opacity: .9;
}

.about-cta{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-media{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(39,80,44,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  background: rgba(255,255,255,.6);
}
.about-media img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display:block;
}

.about-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.about-quote,
.about-points{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(39,80,44,.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.about-quote .quote{
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(20,20,20,.92);
}
.about-quote .quote-name{
  margin: 10px 0 0;
  font-weight: 800;
  color:#27502c;
}

.about-points h2{
  margin: 0 0 10px;
  color:#27502c;
}

.ticks{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap: 8px;
  line-height: 1.8;
}
.ticks li::marker{
  color: #be9311;
}

/* RWD */
@media (max-width: 980px){
  .about-hero{ grid-template-columns: 1fr; }
  .about-media img{ height: 320px; }
  .about-grid2{ grid-template-columns: 1fr; }
}
/* === O MNIE – TYPOGRAFIA === */

.about-quote,
.about-points{
  font-family: inherit;
}

/* cytat */
.about-quote .quote{
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  color: #1f1f1f;
}

.about-quote .quote-name{
  font-size: 15px;
  font-weight: 700;
  margin-top: 14px;
  color: #27502c;
}

/* nagłówek po prawej */
.about-points h2{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #27502c;
}

/* lista punktów */
.about-points ul,
.about-points li{
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #2a2a2a;
}

/* znaczniki listy */
.about-points li::marker{
  color: #be9311;
}
/* === FORMULARZ KONTAKTOWY === */
.contact-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items:start;
}

.contact-form{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}

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

.contact-form label{
  display:grid;
  gap: 6px;
  font-weight: 700;
  color: #27502c;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea{
  font: inherit;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(39,80,44,.18);
  background: rgba(255,255,255,.78);
  outline: none;
}

.contact-form textarea{ resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(190,147,17,.55);
  box-shadow: 0 0 0 4px rgba(190,147,17,.12);
}

.form-legal{
  margin: 6px 0 0;
  font-size: 13px;
  opacity: .75;
  line-height: 1.6;
}

@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}
.about-image img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
/* O mnie – zdjęcie (bez ucinania) */
.about-photo{
  width: 100%;
  height: auto;          /* kluczowe */
  display: block;
  border-radius: 22px;
  object-fit: contain;   /* nic nie ucina */
  background: rgba(255,255,255,.55); /* ładne tło jeśli zostaną “puste” boki */
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
/* === O MNIE: HERO (zdjęcie bez ucinania głowy) === */
.about-hero{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.about-media{
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* najważniejsze: brak stałej wysokości + brak cover */
.about-photo{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* nic nie ucina */
  object-position: 50% 20%;
}

/* mobilka */
@media (max-width: 980px){
  .about-hero{
    grid-template-columns: 1fr;
  }
}
/* === O MNIE: ZDJĘCIE – PROSTOKĄT, WIĘCEJ ODDECHU === */

.about-media{
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.6);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  padding: 22px;                 /* robi „ramkę” i oddala zdjęcie */
}

/* zdjęcie */
.about-photo{
  width: 100%;
  height: 420px;                 /* KLUCZ: poziomy prostokąt */
  object-fit: cover;             /* wypełnia, ale… */
  object-position: 50% 15%;      /* …kadr podniesiony na twarz */
  border-radius: 18px;
  display: block;
}

/* tablet */
@media (max-width: 1100px){
  .about-photo{
    height: 360px;
  }
}

/* mobile */
@media (max-width: 700px){
  .about-media{
    padding: 14px;
  }
  .about-photo{
    height: 320px;
    object-position: 50% 12%;
  }
}
/* === SUBTELNY PARALLAX – O MNIE === */

.parallax-photo{
  will-change: transform;
  transition: transform 0.1s linear;
}

/* na mobile wyłączamy parallax (czytelność i wydajność) */
@media (max-width: 900px){
  .parallax-photo{
    transform: none !important;
  }
}
/* === O MNIE – NOWE ZDJĘCIE (PIONOWY PORTRET) === */

.about-media{
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.6);
  box-shadow: 0 22px 50px rgba(0,0,0,.12);
  padding: 20px;
}

/* zdjęcie */
.about-photo{
  width: 100%;
  max-height: 520px;      /* wysokość zdjęcia */
  object-fit: contain;    /* pokazuje CAŁE zdjęcie */
  display: block;
  border-radius: 18px;
}

/* tablet */
@media (max-width:1100px){
  .about-photo{
    max-height: 460px;
  }
}

/* telefon */
@media (max-width:700px){
  .about-media{
    padding:14px;
  }

  .about-photo{
    max-height:420px;
  }
}
/* === FIX: O MNIE – ZDJĘCIE (NA PEWNO ZADZIAŁA) === */

.about-hero .about-media{
  padding: 22px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,.65) !important;
  box-shadow: 0 22px 50px rgba(0,0,0,.12) !important;
}

.about-hero .about-media .about-photo{
  width: 100% !important;
  height: 520px !important;          /* to zmienia „oddalenie” */
  object-fit: contain !important;     /* pokazuje całe zdjęcie */
  object-position: center top !important;
  display: block !important;
  border-radius: 18px !important;
}

/* tablet */
@media (max-width:1100px){
  .about-hero .about-media .about-photo{
    height: 460px !important;
  }
}

/* telefon */
@media (max-width:700px){
  .about-hero .about-media{
    padding: 14px !important;
  }
  .about-hero .about-media .about-photo{
    height: 420px !important;
  }
}
/* === O MNIE: zdjęcie bez białych ramek === */
.about-media{
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

/* Prostokąt i brak białych pasów */
.about-photo{
  width: 100%;
  height: 520px;              /* możesz zmienić np. na 480px */
  display: block;
  object-fit: cover;          /* wypełnia kadr – nie ma białych pasów */
  object-position: 50% 18%;   /* trzyma twarz wyżej (nie ucina głowy) */
  border-radius: 0 !important;
  background: transparent !important;
}

/* responsywność */
@media (max-width: 1100px){
  .about-photo{ height: 460px; }
}
@media (max-width: 700px){
  .about-photo{ height: 420px; }
}
@media (max-width: 768px){
  .process2-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =========================================
   FINAL OVERRIDE — O MNIE + MOBILE PROCESS
   wklej na sam KONIEC pliku styl.css
   ========================================= */

/* O MNIE */
.about-hero{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 30px !important;
  align-items: start !important;
}

.about-media{
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.10) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.about-photo{
  width: 100% !important;
  max-width: 430px !important;
  height: auto !important;
  display: block !important;
  border-radius: 26px !important;
  object-fit: cover !important;
  object-position: center top !important;
  background: transparent !important;
  box-shadow: none !important;
  will-change: transform !important;
  transition: transform 0.12s linear !important;
}

/* tablet i mobile */
@media (max-width: 980px){
  .about-hero{
    grid-template-columns: 1fr !important;
  }

  .about-media{
    margin-top: 10px !important;
  }

  .about-photo{
    max-width: 360px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 700px){
  .about-photo{
    max-width: 100% !important;
    border-radius: 22px !important;
  }
}

/* Jak wygląda współpraca — mobile */
@media (max-width: 768px){
  .process2-grid{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .process2-step{
    min-height: auto !important;
    padding: 14px !important;
  }

  .process2-step h4{
    font-size: 16px !important;
  }

  .process2-step p{
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}
/* =========================================
   O MNIE — LEPSZA PREZENTACJA ZDJĘCIA
   ========================================= */

.about-hero{
  display: grid !important;
  grid-template-columns: 1.12fr 0.88fr !important;
  gap: 42px !important;
  align-items: center !important;
}

.about-media{
  position: relative !important;
  padding: 0 !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.08)) !important;
  border: 0 !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  box-shadow: none !important;
  min-height: 640px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

/* miękkie tło za zdjęciem */
.about-media::before{
  content: "" !important;
  position: absolute !important;
  inset: 24px 24px 0 24px !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 30% 20%, rgba(190,147,17,0.16), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(39,80,44,0.10), transparent 30%),
    rgba(255,255,255,0.32) !important;
  z-index: 0 !important;
}

/* samo zdjęcie */
.about-photo{
  position: relative !important;
  z-index: 1 !important;
  width: auto !important;
  max-width: 92% !important;
  height: 610px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  display: block !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: 0 24px 55px rgba(0,0,0,0.16) !important;
  transform: translateY(18px);
}

/* tablet */
@media (max-width: 1100px){
  .about-hero{
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-media{
    min-height: 560px !important;
  }

  .about-photo{
    height: 520px !important;
    max-width: 88% !important;
    margin: 0 auto !important;
  }
}

/* telefon */
@media (max-width: 700px){
  .about-media{
    min-height: 440px !important;
    border-radius: 24px !important;
  }

  .about-media::before{
    inset: 14px 14px 0 14px !important;
    border-radius: 20px !important;
  }

  .about-photo{
    height: 410px !important;
    max-width: 92% !important;
    transform: translateY(10px);
  }
}
/* ===== O MNIE — PROSTA, CZYSTA WERSJA ZDJĘCIA ===== */

.about-hero{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 36px !important;
  align-items: center !important;
}

.about-media{
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  min-height: auto !important;
}

.about-media::before{
  display: none !important;
  content: none !important;
}

.about-photo{
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center top !important;
  display: block !important;
  border-radius: 24px !important;
  background: transparent !important;
  box-shadow: 0 18px 36px rgba(0,0,0,.12) !important;
  transform: none !important;
}

/* wyłączamy parallax tylko dla tego zdjęcia */
.parallax-photo{
  transform: none !important;
  transition: none !important;
}

@media (max-width: 980px){
  .about-hero{
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-media{
    justify-content: center !important;
  }

  .about-photo{
    max-width: 340px !important;
  }
}
/* ===== O MNIE — ZDJĘCIE BEZ JAKICHKOLWIEK RAMEK ===== */

.about-media{
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

/* usuwa WSZYSTKIE dodatkowe warstwy (te jasne tła które widzisz) */
.about-media::before,
.about-media::after{
  display: none !important;
  content: none !important;
}

/* samo zdjęcie */
.about-photo{
  width: 100% !important;
  max-width: 420px !important;   /* kontroluje wielkość */
  height: auto !important;
  object-fit: contain !important;
  display: block !important;

  /* brak ramek */
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

/* wyrównanie po prawej */
.about-media{
  display: flex !important;
  justify-content: flex-end !important;
}

/* mobile */
@media (max-width: 980px){
  .about-media{
    justify-content: center !important;
  }

  .about-photo{
    max-width: 320px !important;
  }
}
/* ===== O MNIE — FINALNE ZDJĘCIE BEZ RAMEK ===== */
.about-hero{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 36px !important;
  align-items: center !important;
}

.about-media{
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.about-media::before,
.about-media::after{
  display: none !important;
  content: none !important;
}

.about-photo{
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

@media (max-width: 980px){
  .about-hero{
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-media{
    justify-content: center !important;
  }

  .about-photo{
    max-width: 320px !important;
  }
}
/* ===== O MNIE — zdjęcie bez ramy i bez pustego tła ===== */

.about-hero{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 36px !important;
  align-items: center !important;
}

.about-media{
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;

  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  max-width: none !important;

  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.about-media::before,
.about-media::after{
  display: none !important;
  content: none !important;
}

.about-photo{
  display: block !important;
  width: 360px !important;     /* możesz zmienić np. na 380px */
  max-width: 100% !important;
  height: auto !important;

  background: transparent !important;
  border: none !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

/* mobile */
@media (max-width: 980px){
  .about-hero{
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-media{
    justify-content: center !important;
  }

  .about-photo{
    width: 300px !important;
  }
}
/* ===== O MNIE — wrapper ma mieć szerokość zdjęcia, nie całej kolumny ===== */

.about-hero{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 36px !important;
  align-items: center !important;
}

.about-media{
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.about-media::before,
.about-media::after{
  display: none !important;
  content: none !important;
}

.about-photo{
  display: block !important;
  width: 400px !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: none !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

/* mobile */
@media (max-width: 980px){
  .about-hero{
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-media{
    margin: 0 auto !important;
  }

  .about-photo{
    width: 300px !important;
  }
}
/* O mnie — lepszy balans tekstu i zdjęcia */
.about-hero{
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: 28px !important;
}

.about-copy{
  max-width: 620px;
}

.about-lead{
  font-size: 19px;
  line-height: 1.75;
}

.about-text p{
  font-size: 16px;
  line-height: 1.85;
}

.about-photo{
  width: 400px !important;
}
/* ===== MOBILE FIX — O MNIE ===== */
@media (max-width: 768px){

  .about-hero{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    align-items: start !important;
  }

  .about-copy{
    max-width: 100% !important;
    width: 100% !important;
  }

  .about-copy h1{
    font-size: 34px !important;
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
  }

  .about-lead,
  .about-text p{
    max-width: 100% !important;
    width: 100% !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  .about-media{
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  .about-photo{
    width: min(82vw, 320px) !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .about-cta{
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .about-cta .btn{
    width: 100% !important;
    justify-content: center !important;
  }
}
.pricing-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.price-box{
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(39,80,44,.12);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.price-box h3{
  margin-top: 0;
  color: #27502c;
}

.plan{
  font-weight: 700;
  margin-bottom: 10px;
}

.price-list div{
  display:flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.included-title{
  margin-top: 14px;
  font-weight: 700;
}

.price-box ul{
  padding-left: 18px;
  margin: 10px 0 0;
}

/* mobile */
@media (max-width: 768px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }
}
/* ===== CENNIK — NOWA WERSJA ===== */
.page-title{
  margin: 0;
  color: #27502c;
}

.pricing-title{
  margin: 42px 0 18px;
  color: #27502c;
  font-size: 30px;
  line-height: 1.2;
}

.pricing-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.price-box{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(39,80,44,.12);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.price-box h3{
  margin: 0 0 10px;
  color: #27502c;
  font-size: 22px;
  line-height: 1.35;
}

.plan{
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(39,80,44,.08);
  border: 1px solid rgba(39,80,44,.12);
  color: #27502c;
  font-weight: 700;
}

.price-list{
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.price-list div{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(39,80,44,.08);
}

.price-list strong{
  color: #27502c;
  font-size: 18px;
}

.included-title{
  margin: 0 0 10px;
  font-weight: 700;
  color: #27502c;
}

.price-box ul{
  margin: 0;
  padding-left: 20px;
}

.price-box li{
  margin: 8px 0;
  line-height: 1.7;
  color: #5b6a60;
}

.single-box{
  max-width: 860px;
}

@media (max-width: 900px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }

  .pricing-title{
    font-size: 26px;
  }

  .price-box h3{
    font-size: 20px;
  }
}
/* UKRYCIE przycisku "Wyceń obsługę" na telefonie */
@media (max-width: 768px){
  .nav-cta .btn-primary{
    display: none !important;
  }
}
.link{
  color: #27502c;
  font-weight: 600;
  text-decoration: underline;
}

.link:hover{
  opacity: 0.7;
}
/* ===== Checkbox zgody pod formularzem ===== */
.form-consent{
  margin: 8px 0 4px;
}

.checkbox-label{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

.checkbox-label input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #27502c;
  flex-shrink: 0;
}

.checkbox-label a{
  color: #27502c;
  font-weight: 600;
  text-decoration: underline;
}

.checkbox-label a:hover{
  opacity: .8;
}
/* ===== KLAUZULA INFORMACYJNA ===== */
.legal-page{
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1{
  margin: 0 0 10px;
  color: #27502c;
  font-size: 40px;
  line-height: 1.15;
}

.legal-subtitle{
  margin: 0 0 22px;
  font-weight: 700;
  color: #27502c;
}

.legal-intro{
  margin: 0 0 18px;
  line-height: 1.8;
  color: #5b6a60;
}

.legal-box{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(39,80,44,.12);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.legal-box h3{
  color: #27502c;
  margin-top: 28px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.legal-box h3:first-child{
  margin-top: 0;
}

.legal-box p{
  color: #5b6a60;
  line-height: 1.8;
  margin: 0 0 14px;
}

.legal-box ul{
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-box li{
  color: #5b6a60;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-back{
  margin-top: 22px;
  display: inline-flex;
}

@media (max-width: 768px){
  .legal-page h1{
    font-size: 32px;
  }

  .legal-box{
    padding: 18px;
    border-radius: 18px;
  }
}
/* =========================================
   AJK — PACZKA CSS PREMIUM
   wkleić na sam KONIEC styl.css
   ========================================= */

/* 1) Globalny rytm i typografia */
body{
  line-height: 1.7;
}

.section{
  padding: 64px 0 !important;
}

.section.alt{
  padding: 72px 0 !important;
}

h1, h2, h3, h4{
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p{
  line-height: 1.8;
}

.section-head h2,
.under-hero-head h2,
.page-title,
.about-copy h1{
  margin-bottom: 14px !important;
}

.section-head p,
.under-hero-head p,
.about-lead,
.about-text p,
.content p{
  max-width: 70ch;
}

/* 2) Kontener i większy porządek szerokości */
.container{
  width: min(1180px, calc(100% - 40px)) !important;
}

/* 3) Nagłówki sekcji */
.section h1,
.section h2{
  color: #27502c;
}

/* 4) Bardziej eleganckie boxy */
.feature,
.price-box,
.about-quote,
.about-points,
.pricing-card,
.pricing-note,
.content{
  border-radius: 22px !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.06) !important;
  border: 1px solid rgba(39,80,44,.10) !important;
  background: rgba(255,255,255,.76) !important;
}

/* 5) O mnie — lepszy balans */
.about-hero{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 42px !important;
  align-items: center !important;
}

.about-copy{
  max-width: 720px !important;
}

.about-copy h1{
  font-size: clamp(40px, 5vw, 58px) !important;
  margin-top: 0 !important;
}

.about-lead{
  font-size: 18px !important;
  line-height: 1.8 !important;
  margin-bottom: 18px !important;
}

.about-text p{
  font-size: 16px !important;
  line-height: 1.9 !important;
  margin-bottom: 12px !important;
}

.about-cta{
  margin-top: 22px !important;
}

.about-media{
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.about-media::before,
.about-media::after{
  display: none !important;
  content: none !important;
}

.about-photo{
  width: 400px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 22px !important;
  box-shadow: 0 20px 45px rgba(0,0,0,.10) !important;
  background: transparent !important;
}

/* 6) Oferta — ładniejsze kolumny */
.content ul,
.price-box ul{
  padding-left: 22px;
}

.content li,
.price-box li{
  margin-bottom: 8px;
  line-height: 1.75;
}

/* 7) Cennik */
.pricing-title{
  font-size: clamp(28px, 4vw, 38px) !important;
  margin: 48px 0 18px !important;
}

.price-box h3{
  font-size: 22px !important;
  line-height: 1.35 !important;
}

.plan{
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

.price-list div{
  padding: 12px 0 !important;
}

.price-list strong{
  font-size: 18px !important;
  color: #27502c !important;
}

/* 8) Klauzula i treści prawne */
.legal-page{
  max-width: 920px;
  margin: 0 auto;
}

.legal-box{
  border-radius: 22px !important;
  background: rgba(255,255,255,.80) !important;
  border: 1px solid rgba(39,80,44,.10) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.06) !important;
}

/* 9) Footer — duża poprawa */
footer{
  margin-top: 56px !important;
  padding: 42px 0 22px !important;
  border-top: 1px solid rgba(39,80,44,.10) !important;
  background: rgba(255,255,255,.14) !important;
}

.footer-grid{
  display: grid !important;
  grid-template-columns: 1.2fr .9fr 1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.footer-title{
  font-size: 22px !important;
  margin-bottom: 14px !important;
  color: #27502c !important;
}

.footer-links a{
  padding: 4px 0 !important;
}

.copy{
  margin-top: 28px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(39,80,44,.08) !important;
}

/* 10) Przyciskom dajemy spójność */
.btn{
  min-height: 46px;
}

.btn-primary{
  box-shadow: 0 10px 26px rgba(39,80,44,.18);
}

/* 11) Mobile — uporządkowanie */
@media (max-width: 980px){
  .section{
    padding: 52px 0 !important;
  }

  .section.alt{
    padding: 58px 0 !important;
  }

  .about-hero{
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    align-items: start !important;
  }

  .about-copy{
    max-width: 100% !important;
  }

  .about-media{
    margin: 0 auto !important;
  }

  .about-photo{
    width: min(82vw, 360px) !important;
  }

  .footer-grid{
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .copy{
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }
}

@media (max-width: 768px){
  html, body{
    overflow-x: hidden;
  }

  .container{
    width: min(1180px, calc(100% - 24px)) !important;
  }

  .nav{
    gap: 10px !important;
  }

  .brand{
    min-width: 0 !important;
    gap: 10px !important;
    flex: 1 1 auto !important;
  }

  .brand img{
    width: 44px !important;
    height: 44px !important;
  }

  .brand .title strong{
    font-size: 12px !important;
    line-height: 1.1 !important;
  }

  .brand .title span{
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  .nav-cta .btn-primary{
    display: none !important;
  }

  .about-copy h1,
  .page-title,
  .section h1{
    font-size: 34px !important;
    line-height: 1.1 !important;
  }

  .about-lead,
  .about-text p,
  .content p,
  .section-head p{
    font-size: 16px !important;
    line-height: 1.8 !important;
    max-width: 100% !important;
  }

  .about-cta{
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .about-cta .btn{
    width: 100% !important;
    justify-content: center !important;
  }

  .pricing-grid{
    grid-template-columns: 1fr !important;
  }

  .process2-grid{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .process2-step{
    min-height: auto !important;
    padding: 14px !important;
  }

  .process2-step h4{
    font-size: 16px !important;
  }

  .process2-step p{
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 520px){
  .process2-grid{
    grid-template-columns: 1fr !important;
  }

  .price-box,
  .about-quote,
  .about-points,
  .content,
  .legal-box{
    padding: 18px !important;
  }

  .footer-title{
    font-size: 20px !important;
  }
}
/* O mnie — nagłówek jak na innych podstronach */
.about-copy h1{
  font-size: 48px !important;
  line-height: 1.1 !important;
  margin-bottom: 18px !important;
}

@media (max-width: 768px){
  .about-copy h1{
    font-size: 34px !important;
  }
}
/* 🔥 FINAL FIX — nagłówek O MNIE */
.about-hero h1{
  font-size: 48px !important;
  line-height: 1.1 !important;
  margin-bottom: 18px !important;
}

@media (max-width: 768px){
  .about-hero h1{
    font-size: 34px !important;
  }
}
/* Mniejszy odstęp nad breadcrumbs na stronie O mnie */
.breadcrumbs{
  margin-bottom: 2px !important;
}
