html{background:#0b0d13;color-scheme:dark;scroll-behavior:smooth}
body{
  margin:0;
  background:radial-gradient(circle at top,#161a2b,#0b0d13);
  color:#fff;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:14px
}
*{box-sizing:border-box}

/* TŁO NIE MOŻE POSZERZAĆ LAYOUTU */
.bg{
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.blob{
  position: absolute;
}
.blob:nth-child(2){
  background:linear-gradient(135deg,#22d3ee,#a78bfa);
  top:60%;left:50%;animation-duration:22s
}
@keyframes float{
  from{transform:translate(-20%,-20%) rotate(0)}
  to{transform:translate(20%,20%) rotate(360deg)}
}

/* FLAGS — FINAL HARD LOCK */
.lang-switch{
  position:fixed;
  top:16px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:14px;
  z-index:10;
}
.lang-btn{
  width:34px;
  height:34px;
  border-radius:50%;
  border:none;
  padding:0;
  background:transparent;
  cursor:pointer;
  position:relative;
  opacity:.8;
  transition:opacity .25s ease;
}
.lang-btn:hover,
.lang-btn.active{opacity:1}
.lang-btn img{
  width:34px;
  height:34px;
  object-fit:cover;
  border-radius:50%;
  display:block;
  transform:none !important;
  filter:none !important;
}
.lang-btn::after{
  content:"";
  position:absolute;
  top:4px;
  left:6px;
  width:45%;
  height:45%;
  background:radial-gradient(circle,rgba(255,255,255,.45),transparent 70%);
  border-radius:50%;
  pointer-events:none;
}

/* HERO */
:root{--content-width:880px}
main{
  min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  padding:40px 20px
}
.card{
  max-width:var(--content-width);
  width:100%;
  text-align:center;
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,.06);
  border-radius:28px;
  padding:clamp(32px,6vw,64px);
  box-shadow:0 28px 120px rgba(0,0,0,.45)
}

/* LOGO */
.logo{
  width: min(100%, clamp(540px,46vw,680px));
  margin:0 auto 0px;
  border-radius:8px;
  overflow:hidden;
}
.logo img{width:100%;display:block}
/* TEXT */
h1{font-size:clamp(1.1rem,5vw,1.6rem);margin-bottom:14px}
p{font-size:clamp(1.05rem,2.4vw,1.25rem);color:rgba(255,255,255,.72);line-height:1.7}
.cta{
  display:inline-block;
  margin-top:24px;
  padding:16px 36px;
  border-radius:999px;
  background:linear-gradient(135deg,#4da3ff,#8b5cf6);
  color:#000;
  font-weight:700;
  text-decoration:none
}

/* ABOUT */
section.about{
  max-width:var(--content-width);
  margin:0 auto 80px;
  padding:0 20px
}
.about-inner{
  margin-top:40px;
  padding:clamp(32px,6vw,64px);
  background:rgba(255,255,255,.04);
  border-radius:28px;
  backdrop-filter:blur(12px);
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 224px;
  gap:64px;
  align-items:center
}
@media(max-width:900px){
  .about-grid{grid-template-columns:1fr;gap:36px}
}

/* PHOTO */
.photo-3d{
  width:224px;
  aspect-ratio:1/1;
  border-radius:50%;
  overflow:hidden;
  align-content: center;
  text-align: center;
}
.photo-3d img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* GALLERY — PERFECT ALIGNMENT */
section.gallery{
  max-width:var(--content-width);
  margin:0 auto 140px;
  padding:0 20px
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}
.gallery-item{
  display:grid;
  grid-template-rows:auto 1fr;
  border-radius:22px;
  overflow:hidden;
}
.gallery-item img{
  width:100%;
  display:block;
}
.gallery-caption{
  padding:18px 20px;
  background:rgba(0,0,0,.35);
  font-size:.95rem;
  color:rgba(255,255,255,.75);
}

.gallery-title{
  text-align:center;
  color:rgba(255,255,255,0.75);
  margin-top:40px;
  margin-bottom:20px;
}


/* CONTACT ACTIONS */
.contact-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:28px;
}

.cta{
  transition:background .25s ease, transform .25s ease;
}

.cta:hover{
  background:linear-gradient(135deg,#4ade80,#22c55e);
  transform:translateY(-2px);
}

/* WhatsApp */
.whatsapp-btn{
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  transition:.25s;
}
.whatsapp-btn img{
  width:28px;
  height:28px;
}
.whatsapp-btn:hover{
  background:#3b82f6;
  transform:translateY(-2px);
}

/* Phone */
.phone-link{
  font-weight:600;
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  transition:.25s;
}
.phone-link:hover{
  background:rgba(255,255,255,.16);
}

/* Footer note */
.contact-note{
  margin-top:18px;
  font-size:.85rem;
  color:rgba(255,255,255,.55);
  text-align:center;
}


/* CONTACT ALIGNMENT FIX */
.contact-actions{
  align-items:stretch;
}
.cta,
.whatsapp-btn,
.phone-link{
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
}


/* FINAL CONTACT HORIZONTAL ALIGNMENT */
.contact-actions{
  display:flex;
  justify-content:center;
  align-items:center; /* key fix */
}

.cta,
.whatsapp-btn,
.phone-link{
  height:54px;
  line-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  vertical-align:middle;
}


/* CONTACT STACKED LAYOUT (VERTICAL) */
.contact-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px; /* small, elegant spacing between buttons */
}

.contact-note{
  margin-top:18px; /* a bit more space before the note */
}


/* RESTORE EMAIL CTA LOOK */
.contact-btn{
  padding:0 36px;
  height:54px;
  border-radius:999px;
  background:linear-gradient(135deg,#4da3ff,#8b5cf6);
  color:#000;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  transition:background .25s ease;
}
.contact-btn:hover{
  background:linear-gradient(135deg,#22c55e,#4ade80);
}


/* EMAIL CONTACT BUTTON TEXT FIX */
.contact-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  text-align:center;
}

/* CONTACT NOTE SPACING */
.contact-note{
  margin-top:22px;
}


/* ===== PRICING ===== */
.pricing{
  max-width:var(--content-width);
  margin:90px auto 120px;
  padding:0 20px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  margin-top:40px;
}

.price-card{
  background:rgba(255,255,255,.05);
  border-radius:26px;
  padding:34px 30px;
  backdrop-filter:blur(14px);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  transition:transform .35s ease, box-shadow .35s ease;
}

.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 40px 120px rgba(0,0,0,.6);
}

.price-title{
  font-size:1.15rem;
  font-weight:700;
  margin-bottom:10px;
  text-align: center;
}

.price-from{
  font-size:1.05rem;
  font-weight:700;
  color:#4ade80;
  margin-bottom:16px;
  text-align: center;
}

.price-desc{
  font-size:.92rem;
  line-height:1.65;
  color:rgba(255,255,255,.75);
}

.pricing-note{
  margin-top:28px;
  font-size:.8rem;
  color:rgba(255,255,255,.5);
  text-align:center;
}


/* PRICING CALLOUT */
.pricing-callout{
  margin-top:36px;
  padding:22px 26px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  color:#ffffff;
  font-size:.95rem;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.pricing-callout span{
  color:#4ade80;
  font-weight:600;
}


/* PRICING CALLOUT EMPHASIS */
.pricing-callout{
  font-size:1.05rem;
  padding:28px 32px;
}
.pricing-callout span{
  display:block;
  margin-top:10px;
  font-size:1.1rem;
}


/* PRICING CALLOUT – FRIENDLY & SEXY REFINEMENT */
.pricing-callout{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.9);
}

.pricing-callout strong{
  color:#ffffff;
}

.pricing-callout em{
  color:#94a3b8;
}

.pricing-callout .accent-warm{
  color:#f59e0b;
  font-weight:600;
}

.pricing-callout .accent-green{
  color:#4ade80;
  font-weight:600;
}


/* PRICING CALLOUT – VISUAL STYLE MATCH (REFERENCE-INSPIRED) */
.pricing-callout{
  background:radial-gradient(120% 140% at 50% 0%, rgba(96,165,250,.25), rgba(30,41,59,.9));
  border:none;
  box-shadow:0 40px 120px rgba(0,0,0,.65);
  text-align:center;
}

.pricing-callout h3{
  font-size:1.45rem;
  font-weight:700;
  margin-bottom:12px;
  color:#ffffff;
}

.pricing-callout .line-muted{
  color:rgba(255,255,255,.6);
  font-size:1.05rem;
  margin-bottom:10px;
}

.pricing-callout .line-warm{
  color:#fca5a5;
  font-size:1.15rem;
  font-weight:600;
  margin-bottom:14px;
}

.pricing-callout .line-solution{
  color:#4ade80;
  font-size:1.15rem;
  font-weight:600;
  margin-bottom:14px;
}

.pricing-callout .line-final{
  color:#e5e7eb;
  font-size:1rem;
}


/* PRICING CALLOUT – CLEAN TYPO HIERARCHY */
.pricing-callout{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
  padding:34px 36px;
}

.pricing-callout h3{
  font-size:1.4rem;
  font-weight:600;
  margin:0 0 6px 0;
}

.pricing-callout .line-muted{
  font-size:1.15rem;
  margin-bottom:6px;
}

.pricing-callout .line-warm{
  font-size:1.25rem;
  margin-bottom:18px;
}


/* === PRICING HIERARCHY EMPHASIS (SAFE OVERRIDE) === */
.pricing-grid .price-card:nth-child(2) {
  transform: scale(1.08);
  box-shadow: 0 40px 120px rgba(139, 92, 246, 0.45);
}

.pricing-grid .price-card:nth-child(2) .price-from {
  font-size: calc(1.05rem + 4px);
  color: #8b5cf6;
  font-weight: 800;
}


#heroText{
  white-space: pre-line;
}

/* === CSS BLOCK #2 (extracted from index.html) === */

.site-footer {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 120px;
  padding: 48px 24px 32px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  font-size: 14px;
  line-height: 1.6;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}

/* FOOTER FIX – CENTERED & MOBILE SAFE */
.site-footer{
  text-align:center;
}

.footer-inner{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:48px;
}

.footer-col{
  max-width:260px;
}

@media (max-width:768px){
  .footer-inner{
    flex-direction:column;
    align-items:center;
    gap:16px;
    font-size:12px;
  }
}


#heroText{
  white-space: pre-line;
}

/* Mobile centering fix for About / Profile image */
/* Applies to iOS, Android, macOS Safari/Chrome */

@media (max-width: 768px) {
  .about-section img,
  .profile-image,
  .about-photo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .about-section {
    text-align: center;
  }
}
/* Mobile fix – center profile image under text (iOS / Android) */
@media (max-width: 768px) {

  /* kontener, który trzyma zdjęcie */
  .about-section,
  .about-content,
  .about-wrapper {
    align-items: center !important;
    text-align: center;
  }

  /* samo zdjęcie */
  .about-section img,
  .about-photo,
  .profile-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    align-self: center !important;
    float: none;
  }

}

/* MOBILE: wymuś centrowanie logo */
@media (max-width: 768px) {
  .logo {
    display: flex;
    justify-content: center;
  }
  .logo img {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .logo {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .logo img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .logo, .logo img {
    position: static;
    left: auto;
    right: auto;
    transform: none;
  }
}

@media (max-width: 768px) {
  img[src*="/logo/logo.png"],
  img[src*="wachowiak.online/logo/"] {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    max-width: 100% !important;
    height: auto !important;
  }
}
html, body{
  width:100%;
  overflow-x:hidden;
}

*, *::before, *::after{
  box-sizing:border-box;
}

img, svg, video, canvas{
  max-width:100%;
  height:auto;
}

@media (max-width: 768px){
  .logo{
    width:100% !important;
    max-width:680px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}
body{
  overflow-x:hidden;
}
@media (max-width:768px){

.hero,
.hero-card,
.container{
  width:100%;
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
}

}

@media (max-width: 768px){
  .hero-wrap{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
  }
  .hero-wrap > *{
    width:100% !important;
    max-width:100% !important;
  }
}
@media (max-width: 768px){
  .hero-wrap{
    display:grid !important;
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px){
  .hero-decor{
    display:none !important;
  }
}
@media (max-width: 768px){
  .hero-wrap::before,
  .hero-wrap::after{
    display:none !important;
    content:none !important;
  }
}
main{
  width: 100%;
  display: flex;
  justify-content: center;
}

.card{
  width: min(92vw, 720px);
  margin-left: auto;
  margin-right: auto;}
  
  
@media (max-width: 768px){
  .card{
    position: relative;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }
}






/* 1) ZABLOKUJ poziomy overflow całej strony */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* 2) TŁO odłącz od layoutu: ma być warstwą, nie elementem strony */
.bg{
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* 3) Blob też nie może wpływać na szerokość dokumentu */
.blob{
  position: absolute !important;
  max-width: none !important;
}

/* 4) Karta ma się zawsze mieścić w ekranie */
main{
  width: 100%;
  display: flex;
  justify-content: center;
}

.card{
  width: min(92vw, 780px) !important;
  margin: 0 auto !important;
}