/* ===== TECH / AIRY / GRID OVERRIDE ===== */

:root{
  --brand-blue:#00aeef;
  --brand-blue-hover:#4cceff;
  --brand-yellow:#f5ba1d;
  --brand-fff:#fff;
  --text-dark:#0b1220;
  --soft:#f7fbff;
  --line: rgba(11,18,32,.08);
}

/* Ogólne: więcej powietrza i „tech” feeling */
body{
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.display-5, .display-6{
  letter-spacing: -0.03em;
}

.btn{
  font-weight: 600;
} 

/* HERO: więcej światła + delikatna siatka w tle */
.hero{
  padding: 6.25rem 0 8em;
  background:
    radial-gradient(1200px 650px at 70% 18%, rgba(0,174,239,.10), transparent 60%),
    radial-gradient(900px 650px at 18% 12%, rgba(245,186,29,.08), transparent 55%),
    linear-gradient(0deg, rgba(247,251,255,.65), rgba(247,251,255,0)),
    #fff;
  position: relative;
  overflow: hidden;
}

/* Siatka (tech grid) jako overlay */
.hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .25;
  pointer-events: none;
  mask-image: radial-gradient(650px 450px at 70% 25%, #000 35%, transparent 70%);
}

/* tekst nad obrazem */
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-page {
  padding: 3.25rem 0 5rem; 
  margin-bottom:1rem;
}
/* DUŻY obraz */
.hero-bg-image {
  position: absolute;
  right: -150px;
  bottom: -50px;
  width: 900px;
  max-width: none;
  z-index: 1;
  opacity: 0.95;
}

/* większe ekrany */
@media (min-width: 1400px) {
  .hero-bg-image {
    width: 1100px;
    right: -10px;
  }
}

/* tablet */
@media (max-width: 991px) {
  .hero-bg-image {
    width: 700px;
    right: -250px;
    opacity: 0.4;
  }
}

/* mobile */
@media (max-width: 576px) {
  .hero-bg-image {
    width: 600px;
    right: -40px;
    opacity: 0.25;
  }
}
/* domyślnie brak border i glow */
.navbar-toggler {
    border: 1px solid transparent;
    box-shadow: none !important;
}

/* po kliknięciu / focus */
.navbar-toggler:focus,
.navbar-toggler:active {
    border: 1px solid #00aeef;
    box-shadow: none !important;
}

/* niebieskie kreski */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2300aeef' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.py-lg-6{
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}
.bg-soft{ background: var(--soft); }

/* Typografia: mocniej, nowocześniej */
.display-5, .display-6{
  letter-spacing: -0.03em;
}
.lead{
  max-width: 38rem;
}

/* Navbar: cienka linia + mniej ciężaru */
.nav-shadow{
  border-bottom: 1px solid var(--line);
}

/* Przyciski: bardziej „pill/tech” */
.btn{
  border-radius: 25px;
}
.btn-lg{
  padding: .8rem 1.5rem;
}


.mark-accent{
  background: linear-gradient(90deg, rgba(0,174,239,.16), rgba(245,186,29,.18));
  padding: .08em .22em;
  border-radius: .9rem;
}

/* HERO visual: zamiast ciężkiej karty — „panel” jak UI */
.hero-visual-card{
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 1.5rem 3.5rem rgba(11,18,32,.06);
}

.hero-visual-header{
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

.hero-visual-body{
  padding: 1.25rem;
}

.visual-grid{
  gap: 1rem;
}

/* tiles: bardziej płasko, linie, mniej „kafli” */
.visual-tile{
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.1rem;
  background: rgba(255,255,255,.9);
}
.visual-tile-accent{
  background: rgba(0,174,239,.07);
  border-color: rgba(0,174,239,.18);
}

.tile-bar{
  height: 3px;
  opacity: .95;
}
.visual-pills{ gap: .6rem; }
.pill{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  padding: .55rem .85rem;
}

/* Usuń floaty – robią wizualny tłok */
.hero-float{ display:none; }

/* EKOSYSTEM: z kart -> panele (mniej cienia, więcej linii) */
.eco-card{
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255,255,255,.9);
  box-shadow: none;              /* klucz: mniej ciężaru */
  padding: 2.1rem !important;    /* więcej przestrzeni */
  position: relative;
  overflow: hidden;
}

.eco-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 240px at 20% 10%, rgba(0,174,239,.08), transparent 55%),
    radial-gradient(600px 240px at 85% 20%, rgba(245,186,29,.06), transparent 55%);
  opacity: .9;
  pointer-events: none;
}

.eco-card > *{ position: relative; } /* żeby treść była nad overlay */

.eco-card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,174,239,.22);
  background: rgba(255,255,255,.96);
}

.eco-icon{
  width: 62px;
  height: 62px;
  border-radius: 1.25rem;
  background: rgba(0,174,239,.10);
  border: 1px solid rgba(0,174,239,.14);
  color: var(--brand-blue);
  font-size: 1.25rem;

  display: flex;              /* <-- tego brakowało */
  align-items: center;        /* <-- pion */
  justify-content: center;    /* <-- poziom */
  line-height: 1;
}

.eco-accent{
  height: 3px;
  width: 72px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow));
}

/* PROCESS: odciąż – bez cieni */
.step-card{
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: none;
  padding: 2rem !important;
}

/* PORTFOLIO: bardziej „tech gallery” */
.work-card{
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255,255,255,.92);
  box-shadow: none;
}
.work-card:hover{
  border-color: rgba(0,174,239,.22);
  transform: translateY(-2px);
}
.work-thumb{
  height: 240px;
  background:
    linear-gradient(120deg, rgba(0,174,239,.10), rgba(245,186,29,.10)),
    radial-gradient(900px 360px at 10% 10%, rgba(0,174,239,.18), transparent 60%),
    radial-gradient(800px 360px at 85% 25%, rgba(245,186,29,.14), transparent 55%),
    #fff;
}

/* PROOF: panel style */
.proof{
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255,255,255,.92);
  box-shadow: none;
  padding: 2rem !important;
}
.proof-icon{
  width: 62px;
  height: 62px;
  border-radius: 1.25rem;
  background: rgba(245,186,29,.16);
  border: 1px solid rgba(245,186,29,.22);
  
  display: flex;              /* <-- tego brakowało */
  align-items: center;        /* <-- pion */
  justify-content: center;    /* <-- poziom */
  line-height: 1;
}

.eco-icon i,
.proof-icon i {
  font-size: 1.6rem;  /* było np. 1.25rem */
}

/* CTA: techowy blok z lekkością */
.cta{
  background:
    radial-gradient(1000px 500px at 20% 20%, rgba(245,186,29,.15), transparent 60%),
    radial-gradient(1000px 600px at 80% 15%, rgba(0,174,239,.22), transparent 60%),
    var(--brand-blue);
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
} 
.btn-primary { 
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
 }
 .btn-primary:hover { 
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  color: #fff;
 }
.btn-outline-primary:hover { 
  background: var(--brand-blue);
  border-color: var(--brand-blue-hover);
  color: var(--brand-fff);
 }
.btn-outline-primary { 
  background: var(--brand-fff);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
 }
.btn-tab.btn-primary,
.btn-tab.active {
    background-color: #1C78B7;
    border-color: #1C78B7;
}

.btn-tab.btn-primary:hover,
.btn-tab.active:hover {
    background-color: #155d8f;
    border-color: #155d8f;
}
.btn-tab.btn-outline-primary {
    color: #1C78B7;
    border-color: #1C78B7;
}

.btn-tab.btn-outline-primary:hover {
    background-color: #1C78B7;
    color: white;
}
.btn-cta{
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #000;
  font-weight: 700;
}
.btn-cta:hover{ 
  border-color: #000; 
  font-weight: 700;
}


/* Footer zostaje ciemny, ale czystszy */
.footer{
  background: #070d18;
}
.footer-title{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-list a{
  color: rgba(255,255,255,.72);
  text-decoration: none;          /* usuwa podkreślenie */
  transition: color .25s ease, opacity .25s ease;
}

.footer-list a:hover{
  color: #fff;
}

.footer-list a:hover::after{
  width:100%;
}
/* Mobile spacing */
@media (max-width: 991.98px){
  .hero { padding: 2.5rem 0 4rem; }
  .py-lg-6{
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
}

/* Timeline (tech) */
.timeline{
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  padding: 2.25rem;
}

.timeline-item{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  padding: 1.1rem 0;
  position: relative;
}

.timeline-item + .timeline-item{
  border-top: 1px solid var(--line);
}

.timeline-dot{
  width: 56px;
  height: 56px;
  border-radius: 1.25rem;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(11,18,32,.72);
  background: rgba(0,174,239,.10);
  border: 1px solid rgba(0,174,239,.16);
}

.timeline-dot-accent{
  background: rgba(245,186,29,.18);
  border-color: rgba(245,186,29,.28);
}

.timeline-content p{
  max-width: 56ch;
}

@media (max-width: 575.98px){
  .timeline{ padding: 1.5rem; }
  .timeline-item{
    grid-template-columns: 56px 1fr;
    gap: 1rem;
  }
  .timeline-dot{
    width: 48px;
    height: 48px;
    border-radius: 1rem;
  }
}
 
/* ===== Portfolio / Case cards (clean) ===== */

.case-card{
  position: relative;
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
 
  box-shadow:
    0 4px 12px rgba(0,0,0,0.04),
    0 12px 24px rgba(0,0,0,0.04);

  transition: transform .35s ease,
              box-shadow .35s ease,
              border-color .35s ease;
}

/* tech border glow (po najechaniu) */
.case-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:1.5rem;
  padding:1px;
  background: linear-gradient(120deg, rgba(0,174,239,.45), rgba(245,186,29,.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity:0;
  transition: opacity .35s ease;
  pointer-events:none;
}

.case-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,174,239,.18);
}
.case-card:hover::before{ opacity: 1; }

/* obraz */
.case-media{
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* wysokości */
.case-card .case-media{ height: 360px; }
.case-card-big .case-media{ height: 750px; }

@media (max-width: 991.98px){
  .case-card .case-media{ height: 260px; }
  .case-card-big .case-media{ height: 360px; }
}

/* IMG cover */
.case-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: scale(1);
  transition: transform .6s ease;
}
.case-card:hover .case-media img{
  transform: scale(1.06);
}

/* overlay (dla czytelności tekstu) */
.case-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top,
    rgba(0,0,0,.60) 0%,
    rgba(0,0,0,.28) 40%,
    rgba(0,0,0,0) 72%
  );
  opacity:0;
  transition: opacity .4s ease;
  pointer-events:none;
}
.case-card:hover .case-media::after{
  opacity:1;
}

/* tekst: pokazuj na hover */
.case-meta{
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:2;
  color:#fff;
  max-width: 80%;
  transform: translateY(18px);
  opacity:0;
  transition: opacity .4s ease, transform .4s ease;
}
.case-card:hover .case-meta{
  transform: translateY(0);
  opacity:1;
}

.case-title{
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
}
.case-sub{
  font-size: .92rem;
  opacity: .86;
  margin-top: .2rem;
}

/* opcjonalnie: inne kadry per projekt (odkomentuj jeśli potrzebujesz)
.case-wood .case-media img{ object-position: center 35%; }
.case-bailiff .case-media img{ object-position: center 20%; }
.case-scent .case-media img{ object-position: center; }
*/


/* ===== Hosting plans ===== */
.plan-card{
  border: 1px solid rgba(11,18,32,.08);
  border-radius: 1.5rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11,18,32,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(11,18,32,.08);
  border-color: rgba(0,174,239,.18);
}

.plan-head{
  padding: 1.5rem 1.5rem 1rem;
}

.plan-name{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.plan-sub{
  margin-top: .15rem;
  font-size: .95rem;
}

.plan-price{
  margin-top: .85rem;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.plan-price-sub{
  font-size: .95rem;
  font-weight: 600;
  color: rgba(11,18,32,.55);
}

.plan-list{
  list-style: none;
  padding: 0 1.5rem 1.25rem;
  margin: 0;
}

.plan-list li{
  padding: .25rem 0; 
  color: rgba(11,18,32,.75);
}

.plan-list li:first-child{
  border-top: 0;
}

.plan-foot{
  padding: 0 1.5rem 1.5rem;
}

/* Featured (HEX2) */
.plan-featured{
  border-color: rgba(0,174,239,.22);
  background:
    radial-gradient(900px 380px at 20% 10%, rgba(0,174,239,.12), transparent 60%),
    radial-gradient(900px 380px at 85% 20%, rgba(245,186,29,.10), transparent 60%),
    #fff;
  transform: translateY(-6px);
}

.plan-featured:hover{
  transform: translateY(-10px);
}

.plan-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,174,239,.12);
  border: 1px solid rgba(0,174,239,.25);
  color: rgba(11,18,32,.85);
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

/* make absolute badge work */
.plan-featured{
  position: relative;
} 

.hero-hosting::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('../assets/hero-hosting.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

/* żeby tekst był nad grafiką */
.hero-hosting .container{
  position: relative;
  z-index: 2;
}
/* ===== Domain pricing table ===== */
/* Sekcja */
#domeny {
    scroll-margin-top: 100px;
}

/* Mini opis */
.mini {
    display: inline-block;
    font-size: .78rem;
    font-weight: 100;
    text-transform: lowercase;
    letter-spacing: .03em;
    color: #6c757d;
}

/* Główna tabela */
.pricing-table {
    margin-bottom: 0;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
}

.pricing-table thead th {
    background: #f8f9fa;
    color: #212529;
    font-weight: 700;
    border-bottom: 1px solid #e9ecef;
    white-space: nowrap;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.1rem;
    vertical-align: middle;
    border-color: #eef1f4;
    font-weight: 100;
}

.pricing-table tbody tr:hover {
    background: #fbfdff;
}

/* Nazwa domeny */
.domain-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #212529;
}

/* Cena rejestracji */
.price-new {
    color: #1C78B7;
    font-weight: 700;
}

/* Cena brutto */
.price-brutto {
    color: #6c757d;
    font-weight: 100;
}

/* Sekcyjne nagłówki typu: Domeny narodowe */
.table-section-title th {
    background: #ffffff !important;
    color: #0d6efd;
    font-size: 1.05rem;
    font-weight: 700;
    padding-top: 1.25rem;
    padding-bottom: .75rem;
    border-top: 2px solid #e9ecef;
}

/* Delikatne wyróżnienie popularnych */
.row-featured {
    background: #fffdf0;
}

/* Dodatkowe usługi */
.services-table th[colspan] {
    background: #f8f9fa;
    color: #212529;
    font-size: 1rem;
    font-weight: 700;
}

/* Przełączniki sekcji */
.btn-domain-filter {
    border-radius: 999px;
    padding: .55rem 1rem;
    font-weight: 600;
}

/* Karty sekcji */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}
.hero-care::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('../assets/hero-care.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

/* żeby tekst był nad grafiką */
.hero-care .container{
  position: relative;
  z-index: 2;
}
 /* Hero background (subtelne tech tło bez ciężkich grafik) */
    .hero-care{
      position: relative;
      background:
        radial-gradient(1100px 550px at 70% 18%, rgba(0,174,239,.10), transparent 60%),
        radial-gradient(900px 550px at 18% 12%, rgba(245,186,29,.08), transparent 55%),
        #fff;
      overflow:hidden;
    }
    .hero-care::before{
      content:"";
      position:absolute;
      inset:-2px;
      background-image:
        linear-gradient(rgba(11,18,32,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11,18,32,.08) 1px, transparent 1px);
      background-size: 56px 56px;
      opacity:.18;
      pointer-events:none;
      mask-image: radial-gradient(650px 450px at 65% 25%, #000 35%, transparent 75%);
    }
    .hero-care .container{ position:relative; z-index:2; }

    /* Pakiety opieki: lekkie karty */
    .plan-card{
      border: 1px solid rgba(11,18,32,.08);
      border-radius: 1.5rem;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(11,18,32,.06);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .plan-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(11,18,32,.08);
      border-color: rgba(0,174,239,.18);
    }
    .plan-featured{
      position:relative;
      border-color: rgba(0,174,239,.22);
      background:
        radial-gradient(900px 380px at 20% 10%, rgba(0,174,239,.12), transparent 60%),
        radial-gradient(900px 380px at 85% 20%, rgba(245,186,29,.10), transparent 60%),
        #fff;
      transform: translateY(-6px);
    }
    .plan-featured:hover{ transform: translateY(-10px); }
    .plan-badge{
      position:absolute;
      top:14px;
      right:14px;
      background: rgba(0,174,239,.12);
      border: 1px solid rgba(0,174,239,.25);
      color: rgba(11,18,32,.85);
      padding: .35rem .6rem;
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 800;
    }
    .plan-head{ padding:1.5rem 1.5rem 1rem; }
    .plan-name{
      font-family:'Space Grotesk',sans-serif;
      font-weight:800;
      font-size:1.2rem;
      letter-spacing:-0.02em;
    }
    .plan-sub{ margin-top:.15rem; font-size:.95rem; }
    .plan-price{
      margin-top:.85rem;
      font-weight:900;
      font-size:1.8rem;
      letter-spacing:-0.02em;
    }
    .plan-price-sub{ font-size:.95rem; font-weight:600; color: rgba(11,18,32,.55); }
    .plan-list{ list-style:none; padding:0 1.5rem 1.25rem; margin:0; }
    .plan-list li{
      padding:.55rem 0;
      border-top:1px solid rgba(11,18,32,.06);
      color: rgba(11,18,32,.75);
      display:flex;
      gap:.5rem;
      align-items:flex-start;
    }
    .plan-list li:first-child{ border-top:0; }
    .plan-list i{ color: rgba(0,174,239,.9); margin-top:.15rem; }
    .plan-foot{ padding:0 1.5rem 1.5rem; }

    /* FAQ */
    .accordion-button{ font-weight:700; }
    .accordion-item{
      border: 1px solid rgba(11,18,32,.08);
      border-radius: 1rem;
      overflow:hidden;
    }
    .accordion-item + .accordion-item{ margin-top: .75rem; }
    
    /* ===== Care section – different layout ===== */

.care-point{
  display:flex;
  gap:1rem;
  margin-bottom:1.5rem;
}

.care-point i{
  color: var(--brand-blue);
  font-size: 1.1rem;
  margin-top:.3rem;
}

.care-point span{
  color: rgba(11,18,32,.65);
  font-size:.95rem;
}

.care-summary{
  border-radius:1.5rem;
  background:
    radial-gradient(900px 400px at 20% 10%, rgba(0,174,239,.12), transparent 60%),
    #f8fafc;
  border:1px solid rgba(11,18,32,.06);
}
.hero-web::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('../assets/hero-web.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

/* żeby tekst był nad grafiką */
.hero-web .container{
  position: relative;
  z-index: 2;
}
  
 
.hero-seo:after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('../assets/hero-seo.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

 

.seo-ai-section{
    position: relative;
    background-image: url("../assets/Rozwoj-cyfrowego-marketingu-AI.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}
.hero-contact{
      position: relative;
      background: #fff;
      overflow: hidden;
    }
    .hero-contact::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(1100px 550px at 70% 18%, rgba(0,174,239,.10), transparent 60%),
        radial-gradient(900px 550px at 18% 18%, rgba(245,186,29,.08), transparent 55%);
      pointer-events:none;
    }
    .hero-contact .container{ position:relative; z-index:2; }

    .contact-card{
      border-radius: 1.5rem;
      border: 1px solid rgba(11,18,32,.08);
      background:#fff;
      box-shadow: 0 10px 30px rgba(11,18,32,.06);
    }
    .contact-row{
      display:flex; gap:1rem; align-items:flex-start;
      padding: .9rem 0;
      border-top: 1px solid rgba(11,18,32,.06);
    }
    .contact-row:first-child{ border-top:0; }
    .contact-row i{ color: var(--brand-blue); font-size: 1.15rem; margin-top:.2rem; }
    .mini-links a { text-decoration:none; } 
     
    
    /* grafika w hero/sekcjach (PNG transparent) */
    .service-visual{
      max-width: 560px;
      width: 100%;
      height: auto;
    }

    /* delikatny box pod wizual (żeby nie wisiało w powietrzu) */
    .visual-wrap{
      border-radius: 1.5rem;
      border: 1px solid rgba(11,18,32,.06);
      background: linear-gradient(180deg, rgba(0,174,239,.05), rgba(245,186,29,.03));
      padding: 1.25rem;
    }
     
    .visual-wrap{
      border-radius: 1.5rem;
      border: 1px solid rgba(11,18,32,.06);
      background: linear-gradient(180deg, rgba(0,174,239,.05), rgba(245,186,29,.03));
      padding: 1.25rem;
    }
    .service-visual{
      max-width: 560px;
      width: 100%;
      height: auto;
    }

    /* lista zasad – inna forma niż eco-card */
    .about-point{
      display:flex;
      gap:1rem;
      padding: .9rem 0;
      border-top: 1px solid rgba(11,18,32,.06);
    }
    .about-point:first-child{ border-top:0; }
    .about-point i{
      color: var(--brand-blue);
      font-size: 1.1rem;
      margin-top: .25rem;
    }
    
    
    /* NAVBAR */

.navbar {
    transition: all .3s ease;
}
  
/* linki */

.navbar .nav-link{
    font-weight:300;
    padding:10px 16px;
    color:#333;
    transition:all .2s ease;
}

/* hover link */

.navbar .nav-link:hover{ 
  color: var(--brand-blue);
}

/* dropdown */

.dropdown-menu{
    border:1px #e9e9e9 solid;
    border-radius:12px;
    padding:10px; 
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    animation: dropdownFade .25s ease;
}

/* dropdown item */

.dropdown-item{
    padding:10px 16px;
    border-radius:8px;
    transition:all .2s ease;
}

/* hover dropdown */

.dropdown-item:hover{
    background:#f5f7fb;
    color:#0d6efd;
}

/* animacja */

@keyframes dropdownFade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

#regulaminy-domen ul li a {
    transition: all .2s ease;
}

#regulaminy-domen ul li a:hover {
    color: #1C78B7;
    padding-left: 3px;
}

.portfolio-item {
display:block;
overflow:hidden;
border-radius:14px;
background:#f8f9fa;
position:relative;
}

.portfolio-item img{
width:100%;
height:auto;
display:block;
transition:transform .35s ease;
}

.portfolio-item:hover img{
transform:scale(1.05);
}