:root{
  --yellow:#f8b400;
  --yellow2:#ffcc32;
  --navy:#071426;
  --navy2:#0b1f36;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:var(--text);
}
a{text-decoration:none;color:inherit}
img{max-width:100%}

.header{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:0 56px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 8px 30px rgba(15,23,42,.06);
}

.logo img{
  width:260px;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap:30px;
  text-transform:uppercase;
  font-size:14px;
  font-weight:900;
  color:var(--navy);
}

.nav a{
  position:relative;
  padding:34px 0;
}

.nav a:hover{
  color:#d99b00;
}

.nav a:hover:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:22px;
  height:3px;
  background:var(--yellow);
}

.phone{
  background:linear-gradient(135deg,var(--yellow2),#f59e0b);
  color:#071426;
  padding:16px 24px;
  border-radius:10px;
  font-weight:900;
  white-space:nowrap;
  box-shadow:0 12px 28px rgba(248,180,0,.28);
}

.menu-toggle{
  display:none;
  border:0;
  background:var(--navy);
  color:white;
  font-size:25px;
  border-radius:10px;
  padding:8px 13px;
}

.hero{
  position:relative;
  min-height:720px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:center/cover no-repeat;
}

.hero-home{
  background-image:url("assets/inspekcja-dachow.webp");
}

.hero-drone{
  background-image:url("assets/uslugi-dronem.webp");
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(4,14,28,.88),rgba(4,14,28,.58),rgba(4,14,28,.08));
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:180px;
  background:linear-gradient(0deg,rgba(255,255,255,1),rgba(255,255,255,0));
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(760px,90%);
  margin-left:74px;
  color:white;
}

.eyebrow{
  color:var(--yellow);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.7px;
  margin-bottom:16px;
}

.hero h1{
  font-size:66px;
  line-height:.96;
  text-transform:uppercase;
  letter-spacing:-1.8px;
  margin:0 0 28px;
  text-shadow:0 8px 30px rgba(0,0,0,.35);
}

.hero h1 span{
  color:var(--yellow);
}

.hero p{
  font-size:21px;
  line-height:1.55;
  color:#f1f5f9;
  max-width:640px;
}

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  margin:30px 0;
  color:#f8fafc;
  font-weight:800;
}

.hero-tags span:before{
  content:"✓";
  color:var(--yellow);
  margin-right:8px;
}

.buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 28px;
  border-radius:9px;
  font-weight:900;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:.2px;
  transition:.25s;
}

.btn-yellow{
  background:linear-gradient(135deg,var(--yellow2),#f59e0b);
  color:#071426;
  box-shadow:0 12px 30px rgba(248,180,0,.32);
}

.btn-yellow:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(248,180,0,.4);
}

.btn-dark{
  background:var(--navy);
  color:white;
  border:1px solid rgba(255,255,255,.18);
}

.btn-dark:hover{
  transform:translateY(-2px);
  background:#0d2540;
}

.btn-light{
  background:white;
  color:var(--navy);
  border:1px solid var(--line);
}

.section{
  padding:88px 58px;
}

.section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 48px;
}

.section h2,
.section-head h2{
  font-size:44px;
  line-height:1.1;
  margin:0 0 16px;
  color:var(--navy);
}

.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  margin:0 auto;
  max-width:820px;
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1260px;
  margin:auto;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 42px rgba(15,23,42,.09);
  transition:.25s;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 64px rgba(15,23,42,.16);
}

.card img{
  width:100%;
  height:245px;
  object-fit:cover;
  display:block;
}

.card-body{
  padding:28px;
}

.card h3{
  font-size:24px;
  line-height:1.15;
  text-transform:uppercase;
  color:var(--navy);
  margin:0 0 14px;
}

.card p{
  color:#475569;
  line-height:1.6;
  margin-bottom:22px;
}

.card a{
  color:#d99b00;
  text-transform:uppercase;
  font-weight:900;
  font-size:13px;
}

.benefits-box{
  max-width:1260px;
  margin:auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:34px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  box-shadow:0 16px 46px rgba(15,23,42,.08);
}

.benefit{
  text-align:center;
  padding:14px 18px;
  border-right:1px solid var(--line);
  font-size:13px;
  font-weight:900;
  color:var(--navy);
  text-transform:uppercase;
}

.benefit:last-child{
  border-right:0;
}

.benefit span{
  display:block;
  color:#d99b00;
  font-size:36px;
  margin-bottom:10px;
}

.about-block{
  display:grid;
  grid-template-columns:1fr 1.25fr;
  max-width:1260px;
  margin:auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 52px rgba(15,23,42,.10);
}

.about-text{
  padding:54px;
}

.about-text h2{
  font-size:42px;
  line-height:1.08;
  color:var(--navy);
  margin:0 0 22px;
}

.about-text p{
  color:#475569;
  line-height:1.68;
  font-size:17px;
}

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

.stats{
  background:linear-gradient(135deg,#071426,#0b2540);
  color:white;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:42px 58px;
}

.stats div{
  text-align:center;
  border-right:1px solid rgba(255,255,255,.16);
}

.stats div:last-child{
  border-right:0;
}

.stats strong{
  display:block;
  color:var(--yellow);
  font-size:46px;
  line-height:1;
  margin-bottom:8px;
}

.stats span{
  text-transform:uppercase;
  font-weight:900;
  color:#e2e8f0;
  font-size:14px;
}

.cta{
  background:linear-gradient(135deg,#f8b400,#ffd86b);
  padding:54px 58px;
}

.cta-inner{
  max-width:1260px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  flex-wrap:wrap;
}

.cta h2{
  margin:0 0 8px;
  font-size:38px;
  line-height:1.1;
  color:var(--navy);
  text-transform:uppercase;
}

.cta p{
  margin:0;
  color:#334155;
  font-size:18px;
}

.footer{
  background:#071426;
  color:white;
  padding:48px 58px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:46px;
}

.footer img{
  width:245px;
  background:white;
  border-radius:8px;
  padding:8px;
}

.footer p,
.footer a{
  color:#cbd5e1;
  display:block;
  line-height:1.6;
  margin:8px 0;
}

.footer h3{
  color:white;
  margin-top:0;
}

.subhero{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  background:center/cover no-repeat;
  padding:120px 58px 80px;
  color:white;
  overflow:hidden;
}

.subhero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(4,14,28,.84),rgba(4,14,28,.56),rgba(4,14,28,.12));
}

.subhero > div{
  position:relative;
  z-index:2;
  max-width:850px;
}

.subhero h1{
  font-size:58px;
  text-transform:uppercase;
  margin:8px 0 20px;
  line-height:1;
}

.subhero p{
  font-size:20px;
  line-height:1.65;
  color:#f1f5f9;
}

.subhero-about{
  background-image:url("assets/o-nas-banner.webp");
}

.subhero-drone{
  background-image:url("assets/uslugi-dronem.webp");
}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  max-width:1260px;
  margin:auto;
}

.feature{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:32px;
  box-shadow:0 16px 42px rgba(15,23,42,.08);
  transition:.25s;
}

.feature:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 58px rgba(15,23,42,.14);
}

.feature .icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--navy);
  font-size:26px;
  font-weight:900;
  margin-bottom:20px;
}

.feature h3{
  font-size:24px;
  color:var(--navy);
  margin:0 0 14px;
}

.feature p{
  color:#475569;
  line-height:1.65;
  margin:0;
}

.image-strip{
  max-width:1260px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
}

.image-strip img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 18px 52px rgba(15,23,42,.14);
}

@media(max-width:1100px){
  .nav{display:none}
  .menu-toggle{display:block}
  .menu-open .nav{
    display:flex;
    position:absolute;
    left:20px;
    right:20px;
    top:94px;
    background:white;
    border:1px solid var(--line);
    border-radius:18px;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    box-shadow:0 20px 50px rgba(15,23,42,.16);
  }
  .menu-open .nav a{padding:10px 0}
  .hero h1{font-size:50px}
  .hero-content{margin-left:36px}
  .services,.features{grid-template-columns:repeat(2,1fr)}
  .benefits-box{grid-template-columns:repeat(3,1fr)}
  .about-block,.image-strip{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:720px){
  .header{
    height:auto;
    padding:16px 22px;
    flex-wrap:wrap;
  }
  .logo img{width:220px}
  .phone{width:100%;text-align:center}
  .hero{
    min-height:680px;
  }
  .hero-content{
    margin:0 22px;
    width:auto;
  }
  .hero h1{
    font-size:38px;
  }
  .hero p{
    font-size:18px;
  }
  .section,.cta,.footer,.stats,.subhero{
    padding-left:22px;
    padding-right:22px;
  }
  .section h2,.section-head h2,.about-text h2{
    font-size:32px;
  }
  .services,.features,.benefits-box,.stats,.footer{
    grid-template-columns:1fr;
  }
  .benefit,.stats div{
    border-right:0;
    border-bottom:1px solid var(--line);
    padding-bottom:18px;
  }
  .subhero h1{
    font-size:38px;
  }
}

.mission-section{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.mission-grid{
  max-width:1260px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.mission-card{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:42px;
  box-shadow:0 18px 52px rgba(15,23,42,.09);
  position:relative;
  overflow:hidden;
}

.mission-card:before{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:190px;
  height:190px;
  border-radius:50%;
  background:rgba(248,180,0,.14);
}

.mission-icon{
  width:64px;
  height:64px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--yellow2),#f59e0b);
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:900;
  margin-bottom:24px;
}

.mission-card h3{
  font-size:30px;
  margin:0 0 16px;
  color:var(--navy);
}

.mission-card p{
  color:#475569;
  font-size:17px;
  line-height:1.7;
  margin:0;
}

@media(max-width:720px){
  .mission-grid{
    grid-template-columns:1fr;
  }
  .mission-card{
    padding:30px;
  }
}

/* Obrazy panoramiczne wymagające pełnej widoczności */
.about-img img.img-contain,
.image-strip img.img-contain{
  object-fit:contain;
  background:#f8fafc;
  padding:10px;
}



/* ===== POPRAWKI MOBILE + SPÓJNOŚĆ TYPOGRAFII — PROFI-VISION ===== */

/* Nie zmieniamy kolorów — tylko układ, rozmiary i odstępy */
body{
  overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
  letter-spacing:-0.025em;
}

.hero h1,
.subhero h1{
  font-size:clamp(38px,5vw,58px) !important;
  line-height:1.03 !important;
}

.section h2,
.section-head h2,
.about-text h2{
  font-size:clamp(30px,3.2vw,42px) !important;
  line-height:1.15 !important;
}

.card h3,
.feature h3,
.mission-card h3{
  font-size:clamp(21px,2vw,26px) !important;
  line-height:1.25 !important;
}

.eyebrow{
  font-size:13px !important;
  line-height:1.2 !important;
  letter-spacing:1.8px !important;
  font-weight:800 !important;
  text-transform:uppercase !important;
}

/* Przyciski bardziej równe */
.btn,
button,
.phone{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Obrazy nie powinny wychodzić poza ekran */
img{
  max-width:100%;
}

/* MOBILE */
@media (max-width: 768px){

  .header{
    padding:18px 20px !important;
    gap:14px !important;
  }

  .logo img{
    width:230px !important;
    max-width:72vw !important;
  }

  .menu-toggle{
    width:60px !important;
    height:60px !important;
    border-radius:16px !important;
    flex-shrink:0;
  }

  .phone{
    width:100% !important;
    min-height:62px !important;
    font-size:22px !important;
    font-weight:900 !important;
    margin-top:8px !important;
    border-radius:14px !important;
  }

  .hero{
    min-height:auto !important;
    padding:34px 20px 72px !important;
    align-items:flex-start !important;
    background-position:center top !important;
  }

  .hero:before{
    background:linear-gradient(180deg,rgba(4,14,28,.45),rgba(4,14,28,.82) 42%,rgba(4,14,28,.92) 100%) !important;
  }

  .hero:after{
    height:80px !important;
  }

  .hero-content{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding-top:0 !important;
  }

  .hero .eyebrow{
    font-size:20px !important;
    letter-spacing:1px !important;
    margin-bottom:18px !important;
  }

  .hero h1{
    font-size:clamp(42px,11vw,52px) !important;
    line-height:.96 !important;
    margin-bottom:26px !important;
    max-width:100% !important;
  }

  .hero p{
    font-size:19px !important;
    line-height:1.52 !important;
    max-width:100% !important;
  }

  .hero p strong{
    display:block;
    font-size:19px !important;
    line-height:1.45 !important;
  }

  .hero-tags{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:16px !important;
    margin:26px 0 24px !important;
  }

  .hero-tags span{
    font-size:19px !important;
    line-height:1.25 !important;
  }

  .buttons{
    width:100% !important;
    gap:14px !important;
    margin-top:24px !important;
  }

  .buttons .btn,
  .hero .btn{
    width:100% !important;
    min-height:58px !important;
    font-size:16px !important;
    border-radius:14px !important;
  }

  .section{
    padding:58px 20px !important;
  }

  .section-head{
    margin-bottom:34px !important;
  }

  .section h2,
  .section-head h2,
  .about-text h2{
    font-size:31px !important;
    line-height:1.13 !important;
  }

  .lead,
  p,
  .card p,
  .feature p,
  .about-text p{
    font-size:16px !important;
    line-height:1.6 !important;
  }

  .services,
  .features,
  .seo-grid,
  .mission-grid{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }

  .card img{
    height:220px !important;
    object-fit:cover !important;
  }

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

  .about-text{
    padding:30px !important;
  }

  .about-img img{
    min-height:auto !important;
    height:auto !important;
    object-fit:cover !important;
  }

  .stats{
    grid-template-columns:1fr !important;
    padding:34px 20px !important;
  }

  .cta{
    padding:44px 20px !important;
  }

  .cta h2{
    font-size:30px !important;
    line-height:1.12 !important;
  }

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

  .subhero{
    min-height:auto !important;
    padding:80px 20px 70px !important;
    background-position:center top !important;
  }

  .subhero h1{
    font-size:38px !important;
  }
}

/* Małe telefony */
@media (max-width: 420px){
  .logo img{
    width:210px !important;
  }

  .menu-toggle{
    width:56px !important;
    height:56px !important;
  }

  .phone{
    font-size:20px !important;
  }

  .hero h1{
    font-size:40px !important;
  }

  .hero p,
  .hero p strong,
  .hero-tags span{
    font-size:18px !important;
  }
}



/* =========================================================
   PROFI-VISION — FINAL MOBILE RESPONSIVE PATCH
   Desktop bez zmian, poprawki tylko dla urządzeń mobilnych
   ========================================================= */

html, body{
  max-width:100%;
  overflow-x:hidden;
}

img{
  max-width:100%;
}

/* Domyślna spójność */
.btn,
button,
.phone{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* TABLET */
@media (max-width: 1024px){
  .header{
    padding-left:28px !important;
    padding-right:28px !important;
  }

  .nav{
    gap:18px !important;
  }

  .hero h1,
  .subhero h1{
    font-size:clamp(42px,6vw,58px) !important;
  }

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

/* MOBILE */
@media (max-width: 768px){

  /* HEADER */
  .header{
    position:sticky !important;
    top:0;
    z-index:999;
    height:auto !important;
    padding:14px 18px 16px !important;
    display:grid !important;
    grid-template-columns:1fr auto !important;
    align-items:center !important;
    gap:12px !important;
    background:#ffffff !important;
  }

  .logo{
    display:flex !important;
    align-items:center !important;
    min-width:0 !important;
  }

  .logo img{
    width:220px !important;
    max-width:68vw !important;
    height:auto !important;
  }

  .menu-toggle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:58px !important;
    height:58px !important;
    min-width:58px !important;
    min-height:58px !important;
    padding:0 !important;
    border-radius:16px !important;
    font-size:28px !important;
  }

  .nav{
    grid-column:1 / -1 !important;
  }

  .menu-open .nav{
    top:88px !important;
    left:16px !important;
    right:16px !important;
    width:auto !important;
  }

  /* Telefon jako mniejszy, ale nadal czytelny pasek */
  .phone{
    grid-column:1 / -1 !important;
    width:100% !important;
    min-height:56px !important;
    padding:0 18px !important;
    margin-top:6px !important;
    border-radius:14px !important;
    font-size:21px !important;
    font-weight:900 !important;
    letter-spacing:.2px !important;
  }

  /* HERO */
  .hero,
  .hero-home,
  .hero-drone{
    min-height:auto !important;
    height:auto !important;
    padding:34px 18px 62px !important;
    align-items:flex-start !important;
    background-size:cover !important;
    background-position:center top !important;
  }

  .hero:before{
    background:linear-gradient(
      180deg,
      rgba(4,14,28,.34) 0%,
      rgba(4,14,28,.66) 34%,
      rgba(4,14,28,.92) 100%
    ) !important;
  }

  .hero:after{
    height:70px !important;
  }

  .hero-content{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
  }

  .hero .eyebrow{
    font-size:17px !important;
    line-height:1.18 !important;
    letter-spacing:1.1px !important;
    margin-bottom:16px !important;
  }

  .hero h1{
    font-size:clamp(36px,10vw,46px) !important;
    line-height:.98 !important;
    letter-spacing:-1.2px !important;
    margin:0 0 22px !important;
    max-width:96% !important;
  }

  .hero p{
    font-size:17px !important;
    line-height:1.52 !important;
    max-width:94% !important;
    margin-bottom:16px !important;
  }

  .hero p strong{
    display:block !important;
    font-size:17px !important;
    line-height:1.45 !important;
    max-width:94% !important;
  }

  .hero-tags{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
    margin:22px 0 22px !important;
  }

  .hero-tags span{
    font-size:17px !important;
    line-height:1.25 !important;
  }

  .buttons{
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
    margin-top:22px !important;
  }

  .buttons .btn,
  .hero .btn{
    width:100% !important;
    min-height:56px !important;
    padding:0 18px !important;
    border-radius:14px !important;
    font-size:15px !important;
  }

  /* SEKCJE */
  .section{
    padding:54px 18px !important;
  }

  .section-head{
    margin-bottom:32px !important;
  }

  .section h2,
  .section-head h2,
  .about-text h2,
  .mission-card h2{
    font-size:clamp(28px,8vw,34px) !important;
    line-height:1.12 !important;
    margin-bottom:14px !important;
  }

  .lead,
  p,
  .card p,
  .feature p,
  .about-text p,
  .mission-card p{
    font-size:16px !important;
    line-height:1.6 !important;
  }

  /* GRIDY */
  .services,
  .features,
  .mission-grid,
  .seo-grid,
  .benefits-box{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:22px !important;
  }

  /* KARTY */
  .card,
  .feature,
  .mission-card,
  .seo-card{
    border-radius:22px !important;
  }

  .card img,
  .service-card img{
    width:100% !important;
    height:210px !important;
    object-fit:cover !important;
    object-position:center center !important;
  }

  .card-body{
    padding:24px !important;
  }

  .card h3,
  .feature h3,
  .mission-card h3,
  .seo-card h3{
    font-size:22px !important;
    line-height:1.2 !important;
  }

  /* BLOKI TEKST + OBRAZ */
  .about-block{
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .about-text{
    padding:28px !important;
  }

  .about-img,
  .image-strip{
    overflow:hidden !important;
    border-radius:20px !important;
  }

  .about-img img,
  .image-strip img{
    width:100% !important;
    height:auto !important;
    max-height:390px !important;
    object-fit:contain !important;
    object-position:center center !important;
    background:#f8fafc !important;
  }

  /* Drony / turbiny / inspekcje mają być widoczne w całości */
  img[src*="turb"],
  img[src*="inspekcja"],
  img[src*="dron"],
  img[src*="Dron"]{
    object-fit:contain !important;
    object-position:center center !important;
    background:#f8fafc !important;
  }

  /* SUBHERO */
  .subhero,
  .seo-page-hero{
    min-height:auto !important;
    padding:76px 18px 66px !important;
    background-position:center top !important;
  }

  .subhero h1,
  .seo-page-hero h1{
    font-size:38px !important;
    line-height:1.05 !important;
  }

  .subhero p,
  .seo-page-hero p{
    font-size:17px !important;
    line-height:1.55 !important;
  }

  /* STATYSTYKI / CTA / FOOTER */
  .stats{
    grid-template-columns:1fr !important;
    padding:34px 18px !important;
  }

  .cta{
    padding:42px 18px !important;
  }

  .cta-inner{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:22px !important;
  }

  .cta h2{
    font-size:30px !important;
    line-height:1.12 !important;
  }

  .footer{
    grid-template-columns:1fr !important;
    padding:38px 18px !important;
    gap:30px !important;
  }

  .footer img{
    max-width:220px !important;
  }

  /* Lokalizacja SEO */
  .seo-cities{
    justify-content:flex-start !important;
    gap:10px !important;
  }

  .seo-cities a,
  .seo-cities span{
    width:100% !important;
    justify-content:center !important;
    text-align:center !important;
  }
}

/* MAŁE TELEFONY */
@media (max-width: 420px){

  .header{
    padding:12px 14px 14px !important;
  }

  .logo img{
    width:205px !important;
    max-width:66vw !important;
  }

  .menu-toggle{
    width:54px !important;
    height:54px !important;
    min-width:54px !important;
    min-height:54px !important;
  }

  .phone{
    min-height:54px !important;
    font-size:19px !important;
  }

  .hero{
    padding:30px 14px 56px !important;
  }

  .hero .eyebrow{
    font-size:15px !important;
  }

  .hero h1{
    font-size:37px !important;
    line-height:.98 !important;
    max-width:100% !important;
  }

  .hero p,
  .hero p strong,
  .hero-tags span{
    font-size:16px !important;
  }

  .section{
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .card img,
  .service-card img{
    height:195px !important;
  }

  .about-img img,
  .image-strip img{
    max-height:340px !important;
  }
}



/* ===== POPRAWKA EYEBROW / MAŁYCH NAGŁÓWKÓW SEKCJI ===== */
/* Dotyczy m.in. Bezpieczeństwo ma znaczenie, Nasza oferta, O nas, Usługi dronem */
.eyebrow{
  font-size: clamp(15px, 1.35vw, 18px) !important;
  line-height: 1.25 !important;
  letter-spacing: 1.4px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
}

.hero .eyebrow,
.subhero .eyebrow,
.seo-page-hero .eyebrow{
  font-size: clamp(17px, 1.6vw, 21px) !important;
  line-height: 1.2 !important;
  letter-spacing: 1.2px !important;
  margin-bottom: 20px !important;
}

.section-head .eyebrow,
.about-text .eyebrow,
.mission-section .eyebrow{
  font-size: clamp(15px, 1.25vw, 17px) !important;
}

/* Mobile: małe nagłówki sekcji mają być czytelne, ale nie dominować */
@media (max-width: 768px){
  .eyebrow{
    font-size: 16px !important;
    letter-spacing: 1.1px !important;
    margin-bottom: 14px !important;
  }

  .hero .eyebrow,
  .subhero .eyebrow,
  .seo-page-hero .eyebrow{
    font-size: 17px !important;
    letter-spacing: 1px !important;
    margin-bottom: 16px !important;
  }
}

@media (max-width: 420px){
  .eyebrow{
    font-size: 15px !important;
  }

  .hero .eyebrow,
  .subhero .eyebrow,
  .seo-page-hero .eyebrow{
    font-size: 16px !important;
  }
}



/* ===== POPRAWKA SEKCJI KONTAKT / DANE FIRMY ===== */
footer h3,
.footer-contact-updated h3{
  margin-bottom: 18px;
}

footer p,
.footer-contact-updated p{
  margin: 8px 0;
  line-height: 1.65;
}

footer a,
.footer-contact-updated a{
  color: inherit;
  text-decoration: none;
}

footer a:hover,
.footer-contact-updated a:hover{
  text-decoration: underline;
}

/* Bloki kontaktowe nie mogą wyglądać jak doklejony element */
.footer-contact-updated{
  margin-top: 0;
}

/* Mobile: kontakt w stopce czytelny i bez ścisku */
@media (max-width: 768px){
  footer p,
  .footer-contact-updated p{
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
}
