/* =====================================================
   PTAKI POD KONTROLĄ
   STYLE.CSS
   CZĘŚĆ 1
====================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{

--navy:#07131d;
--navy-light:#0d1d2a;
--gold:#d4af37;
--gold-light:#e8c96c;
--white:#ffffff;
--text:#d9dee3;
--text-dark:#8f98a1;

--radius:22px;

--shadow:
0 20px 60px rgba(0,0,0,.30);

--transition:.35s cubic-bezier(.2,.8,.2,1);

}

html{

scroll-behavior:smooth;

}

body{

    margin:0;

    font-family:'Montserrat',sans-serif;

    color:#fff;

    background:
        #08131d
        url("../images/site-background.png")
        center top
        repeat-y;

    background-size:cover;

}

img{

display:block;
max-width:100%;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:min(1320px,92%);
margin:auto;

}

/* ===========================
   WSPÓLNE
=========================== */

section{

position:relative;
padding:90px 0;

}

.section-title{

max-width:1100px;
margin:0 auto 50px;
text-align:center;

}

.section-title span{

display:inline-block;

padding:8px 18px;

border:1px solid rgba(212,175,55,.30);

border-radius:40px;

color:var(--gold);

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:24px;

}

.section-title h2{

font-size:58px;

font-weight:800;

line-height:1;

margin-bottom:25px;

}

.section-title p{

font-size:20px;

color:var(--gold);

}

/* ===========================
   BUTTONS
=========================== */

.btn-gold{

display:inline-flex;

align-items:center;

justify-content:center;

height:56px;

padding:0 34px;

background:var(--gold);

color:#08131d;

border-radius:42px;

font-size:14px;

font-weight:700;

letter-spacing:.5px;

transition:var(--transition);

border:none;

cursor:pointer;

margin-top:0px;

margin-bottom:0px;

}

.btn-gold:hover{

transform:translateY(-5px);

box-shadow:

0 18px 40px rgba(212,175,55,.35);

}

.btn-transparent{

display:inline-flex;

align-items:center;

justify-content:center;

height:60px;

padding:0 42px;

border-radius:50px;

border:2px solid rgba(255,255,255,.35);

color:#fff;

transition:var(--transition);

}

.btn-transparent:hover{

background:#fff;

color:#08131d;

}

/* ===========================
   HEADER
=========================== */

/* ===========================
   HEADER PREMIUM
=========================== */

#header{

position:fixed;
top:0;
left:0;
width:100%;

z-index:1000;

background:linear-gradient(
180deg,
#07131d 0%,
#0a1824 100%);

border-bottom:1px solid rgba(212,175,55,.28);

box-shadow:0 10px 30px rgba(0,0,0,.28);

transition:.35s;

}

#header.scrolled{

background:rgba(4,12,22,.92);

box-shadow:0 12px 35px rgba(0,0,0,.35);

}

.header-wrapper{

display:flex;

align-items:center;

justify-content:space-between;

height:105px;

gap:34px;

}

#header .container{

width:100%;

max-width:1450px;

padding:0 18px;

margin:auto;

}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
    width:280px;
    padding-top:18px;
    margin-bottom:-8px; 
}

.logo img{
width:100%;
height:auto;
display:block;
}

width:auto;

display:block;

filter:
drop-shadow(0 8px 18px rgba(0,0,0,.35));

transition:.35s;

}

.logo:hover img{

transform:scale(1.03);

}

nav{

margin:auto;

}

nav ul{

display:flex;

gap:42px;

}

nav a{

position:relative;

font-size:15px;

font-weight:700;

letter-spacing:.8px;

color:#fff;

padding:10px 0;

transition:.3s;

}

nav a::after{

content:"";

position:absolute;

left:50%;

bottom:-8px;

transform:translateX(-50%);

width:0;

height:2px;

background:linear-gradient(
90deg,
transparent,
var(--gold),
transparent);

transition:.3s;

}

nav a:hover,
nav a.active{

color:var(--gold);

}

nav a:hover::after,
nav a.active::after{

width:100%;

}

.header-right{

display:flex;

flex-direction:column;

align-items:flex-end;

gap:6px;

}

.phone{

font-size:18px;

font-weight:700;

color:#fff;

}

.phone i{

color:var(--gold);

margin-right:8px;

}

.mail{

font-size:14px;

color:rgba(255,255,255,.72);

}

.mobile-button{

display:none;

font-size:28px;

cursor:pointer;

color:#fff;

}

/* ===========================
   HERO
=========================== */

.hero{

position:relative;

width:100%;

height:calc(100vh - 100px);

min-height:780px;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

left:0;
bottom:0;

width:100%;
height:260px;

background:linear-gradient(
to bottom,
rgba(8,19,29,0) 0%,
rgba(8,19,29,.20) 20%,
rgba(8,19,29,.55) 45%,
rgba(8,19,29,.90) 75%,
#08131d 100%
);

}

.hero-image{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

object-position:center 45%;

z-index:0;

}

.hero-overlay{

position:absolute;

top:0;
left:0;
right:0;
bottom:0;

background:
linear-gradient(
90deg,
rgba(5,12,20,.15) 0%,
rgba(5,12,20,.18) 35%,
rgba(5,12,20,.06) 65%,
rgba(5,12,20,0) 100%);

z-index:1;

}

.hero-content{

    position:relative;

    z-index:5;

    height:100%;

    display:flex;

    align-items:center;

    padding-top:200px;
    padding-bottom:20px;

}

.hero-text{

    display:block;

    max-width:560px;

    margin-top:-80px;

    margin-left:25px;

}

.hero-text h1{

    font-size:46px;

    font-weight:800;

    line-height:1.08;

    letter-spacing:-1px;

    margin-bottom:24px;

    max-width:680px;

}

.hero-text p{

    font-size: 22px;

    line-height: 1.7;

    max-width: 520px;

    margin-bottom: 40px;

    color: rgba(255,255,255,.88);

}

.hero p{

max-width:620px;

font-size:20px;

line-height:1.85;

color:rgba(255,255,255,.90);

margin-bottom:42px;

}

.hero-buttons{

display:flex;

gap:18px;

align-items:center;

flex-wrap:wrap;

margin-top:10px;

}
/* =====================================================
   PROBLEMS
====================================================== */

.problems{

background:

linear-gradient(
180deg,
#0c1d2b 0%,
#0d2330 100%);

}

.problems::before{

content:"";

position:absolute;

width:700px;
height:700px;

left:-220px;
top:-220px;

background:
radial-gradient(circle,
rgba(212,175,55,.08),
transparent 70%);

pointer-events:none;

}

.problem-grid{

display:grid;

grid-template-columns:
repeat(5,1fr);

gap:24px;

margin-top:35px;

}

.problem-card{

    position:relative;
    padding:34px 20px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    backdrop-filter:blur(12px);
    transition:var(--transition);
    overflow:hidden;

    display:flex;
    flex-direction:column;
    
}

.problem-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;
height:100%;

background:

linear-gradient(
120deg,
transparent,
rgba(255,255,255,.12),
transparent);

transition:.8s;

}

.problem-card:hover::before{

left:120%;

}

.problem-card:hover{

transform:translateY(-10px);

border-color:
rgba(212,175,55,.35);

box-shadow:

0 30px 60px
rgba(0,0,0,.35);

}

.problem-icon{

width:54px;
height:54px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:34px;

font-size:28px;

background:

linear-gradient(
135deg,
#d4af37,
#f3d982);

color:#08131d;

box-shadow:

0 12px 30px
rgba(212,175,55,.35);

}

.problem-card h3{

font-size:21px;
    font-weight:700;
    line-height:1;
    white-space:nowrap;
    margin-bottom:14px;
}

.problem-card p{

    color:var(--text);
    font-size:15px;
line-height:1.6;

}


/* =====================================================
   SOLUTIONS
====================================================== */

.solutions{

position:relative;

background:
linear-gradient(
180deg,
#091117 0%,
#0b1823 35%,
#0d1b28 100%);

overflow:hidden;

}

.solutions::before{

content:"";

position:absolute;

top:-220px;

left:50%;

transform:translateX(-50%);

width:1200px;

height:500px;

pointer-events:none;

background:

radial-gradient(
ellipse at center,
rgba(212,175,55,.12) 0%,
rgba(212,175,55,.05) 35%,
transparent 75%);

filter:blur(60px);

}

.solutions-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(420px,1fr));

gap:40px;

margin-top:70px;

}

.solution-card{

    position:relative;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    cursor:pointer;

    border-radius:32px;

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.025));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:all .45s ease;

       box-shadow:
0 25px 60px rgba(0,0,0,.35);

}

.solution-card:hover{

    transform:translateY(-12px) scale(1.015);

    border-color:rgba(212,175,55,.45);

    box-shadow:

    0 40px 80px rgba(0,0,0,.45);

}

.solution-image{

    position:relative;

    overflow:hidden;

    height:380px;

    background:#08131d;

    border-bottom:1px solid rgba(255,255,255,.06);

    flex:0 0 380px;

}

.solution-image img{

    display:block;
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center center;

    transition:1.4s;

}

.solution-card:hover .solution-image img{

transform:scale(1.03);

}

.solution-image::after{

content:"";

position:absolute;

left:-120%;

top:0;

width:60%;

height:100%;

background:

linear-gradient(
110deg,
transparent,
rgba(255,255,255,.28),
transparent);

transition:1.1s;

}

.solution-card:hover .solution-image::after{

left:140%;

}

.solution-badge{

    position:absolute;

    top:18px;
    left:18px;

    padding:10px 18px;

    border-radius:40px;

    background:var(--gold);

    color:#08131d;

    font-size:11px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    box-shadow:
    0 12px 28px rgba(212,175,55,.35);

    z-index:10;

}

.solution-badge.gold{

    background:#ffffff;

    color:#08131d;
    }

/* =====================================================
   SOLUTIONS - CONTENT
====================================================== */

.solution-content{

    padding:42px 42px 46px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.solution-content h3{

    font-size:40px;

    font-weight:800;

    line-height:1.15;

    color:#fff;

    margin-bottom:16px;

    transition:var(--transition);

}

.solution-content h4{

    display:inline-block;

    margin-bottom:14px;

    font-size:13px;

    font-weight:700;

    color:var(--gold);

    letter-spacing:3px;

    text-transform:uppercase;

}

.solution-content p{

    font-size:16px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:28px;

}

.solution-content ul{

    display:flex;
    flex-direction:column;

    gap:18px;

    margin-bottom:0;

}

.solution-content ul li{

    position:relative;

    padding-left:38px;

    font-size:17px;

    color:#eef2f6;

    line-height:1.6;

}

.solution-content ul li::before{

    content:"✓";

    position:absolute;

    left:0;
    top:2px;

    width:24px;
    height:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light));

    color:#08131d;

    font-size:13px;
    font-weight:800;

    box-shadow:
    0 8px 18px rgba(212,175,55,.35);

}

.solution-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent);

    opacity:35;

    transition:var(--transition);

}

.solution-card:hover::before{

    opacity:1;

}

.solution-card:hover h3{

    color:#ffffff;

}

.solution-btn{

display:inline-flex;

align-items:center;

justify-content:center;

margin-top:36px;

align-self:flex-start;

min-width:240px;

height:56px;

font-size:15px;

letter-spacing:.8px;

}
/* =====================================================
   APPLICATIONS
====================================================== */

.applications{

background:

linear-gradient(
180deg,
#0b1823 0%,
#0c1d2b 100%);

}

.applications-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

margin-top:50px;

}

.applications-image{

    margin-top:25px;

}

.applications-image img{

    width:100%;

    display:block;

    border-radius:24px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.35);

}

.application-card{

background:#0d1d2a;

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

overflow:hidden;

transition:.35s;

}

.application-card:hover{

transform:translateY(-6px);
border-color:rgba(212,175,55,.30);

box-shadow:
0 18px 40px rgba(0,0,0,.30);

}

.application-card img{

width:100%;

height:95px;

object-fit:cover;

display:block;

}

.application-card h3{

padding:12px;

margin:0;

text-align:center;

font-size:15px;

font-weight:600;

}

/* =====================================================
   ADVANTAGES
====================================================== */

.advantages{

background:#07131d;

}

.advantages-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.adv-card{

position:relative;

padding:46px 38px;

min-height:285px;

background:

linear-gradient(
180deg,
rgba(255,255,255,.045),
rgba(255,255,255,.02));

border:1px solid rgba(255,255,255,.07);

border-radius:28px;

overflow:hidden;

transition:all .35s ease;

backdrop-filter:blur(18px);

}

.adv-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:3px;

background:

linear-gradient(
90deg,
transparent,
var(--gold),
transparent);

opacity:0;

transition:.4s;

}

.adv-card:hover::before{

opacity:1;

}

.adv-card:hover{

transform:translateY(-8px);

border-color:rgba(212,175,55,.28);

box-shadow:

0 18px 45px rgba(0,0,0,.28);

}

.adv-card i{

width:70px;

height:70px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:28px;

background:

linear-gradient(
135deg,
var(--gold),
var(--gold-light));

color:#07131d;

margin-bottom:28px;

box-shadow:

0 15px 35px rgba(212,175,55,.25);

transition:var(--transition);

}

.adv-card:hover i{

transform:rotateY(180deg);

}

.adv-card h3{

font-size:25px;

font-weight:700;

margin-bottom:16px;

}

.adv-card p{

font-size:16px;

line-height:1.8;

color:var(--text);

}
/* ===========================
   HERO PREMIUM
=========================== */

.hero::after{

content:"";

position:absolute;

top:-35%;

left:-20%;

width:70%;

height:180%;

background:

radial-gradient(circle,
rgba(212,175,55,.18),
transparent 70%);

filter:blur(90px);

animation:heroLight 10s ease-in-out infinite;

pointer-events:none;

z-index:2;

}

@keyframes heroLight{

0%{

transform:
translate(-60px,-40px);

opacity:.35;

}

50%{

transform:
translate(90px,40px);

opacity:.75;

}

100%{

transform:
translate(-60px,-40px);

opacity:.35;

}

}
@keyframes heroZoom{

0%{

transform:
scale(1.08);

}

50%{

transform:
scale(1.14);

}

100%{

transform:
scale(1.08);

}

}
@keyframes goldGlow{

0%{

text-shadow:

0 0 8px rgba(212,175,55,.2);

}

50%{

text-shadow:

0 0 26px rgba(212,175,55,.75);

}

100%{

text-shadow:

0 0 8px rgba(212,175,55,.2);

}

}

/* =====================================================
   CONTACT
====================================================== */

.contact{

    background:linear-gradient(
        180deg,
        #08131d 0%,
        #0b1823 100%);

}

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:flex-start;

    margin-top:70px;

}

.contact-left{

    margin-top:-40px;

}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:18px;
margin-top:10px;

}

.info-box{

    display:flex;
    align-items:center;
    gap:28px;

    padding:34px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    transition:var(--transition);

}

.info-box:hover{

    transform:translateY(-6px);

    border-color:rgba(212,175,55,.35);

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.info-box i{

    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light));

    color:#08131d;

    font-size:24px;

    flex-shrink:0;

}

.info-box h4{

    color:var(--gold);

    font-size:20px;

    margin-bottom:14px;

}

.info-box a,
.info-box p{

    
    color:var(--text);

    font-size:17px;

}

.contact-form{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    border-radius:18px;

    color:#fff;

    font-size:16px;

    transition:.3s;

    font-family:inherit;

}

.contact-form textarea{

    min-height:190px;

    resize:vertical;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#9ca8b2;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(212,175,55,.12);

}

.contact-form button{

    margin-top:10px;

    align-self:flex-start;

    min-width:260px;

}
/* =====================================================
   FOOTER
====================================================== */

footer{

border-top:1px solid rgba(255,255,255,.08);

}

.footer-brand h3{

font-size:20px;

font-weight:800;

letter-spacing:2px;

color:#fff;

margin-bottom:8px;

}

.footer-brand p{

color:rgba(255,255,255,.65);

font-size:14px;

}

.footer-copy{

margin-left:auto;

color:rgba(255,255,255,.55);

font-size:14px;

text-align:right;

}
/* ==========================
   TRUST BAR
========================== */

.trust-bar{

background:#ffffff;

border-top:1px solid rgba(0,0,0,.06);

border-bottom:1px solid rgba(0,0,0,.06);

padding:22px 0;

}

.trust-grid{

display:flex;

justify-content:space-between;

gap:30px;

flex-wrap:wrap;

}

.trust-item{

flex:1;

min-width:240px;

text-align:center;

font-size:17px;

font-weight:700;

color:#0c2235;

}
/* =========================================
   JAK DZIAŁA BIRD FREE
========================================= */

/*==================================================
JAK DZIAŁA BIRD FREE
==================================================*/

.sense-card h3{

    color:#fff;

    font-size:22px;

    margin-bottom:12px;

}

.sense-card p{

    color:#cfcfcf;

    font-size:15px;

    line-height:1.6;

}

.birdfree-senses{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:35px !important;
}

.sense-card{

    background:#111;

    border:1px solid rgba(212,175,55,.28);

    border-radius:18px;

    padding:22px;

    min-height:200px;

    transition:.35s;

}

.sense-icon{

    font-size:42px;

    margin-bottom:16px;

}

/*==================================================
JAK DZIAŁA BIRD FREE
==================================================*/

.birdfree-how{

    padding:120px 0;
  
}

.birdfree-how-grid{
    display:grid;
    grid-template-columns:1.2fr .9fr;
    gap:70px;
    align-items:center;
}

.birdfree-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.birdfree-steps{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.step{
    background:#111;
    border:1px solid rgba(212,175,55,.18);
    border-radius:22px;
    padding:28px 32px;
    transition:.35s;
}

.step:hover{
    transform:translateX(8px);
    border-color:#d4af37;
    box-shadow:0 18px 45px rgba(212,175,55,.15);
}

.step-number{
    width:54px;
    height:54px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    background:linear-gradient(135deg,#d4af37,#f0cf63);
    color:#08131d;
    font-size:22px;
    font-weight:800;
}

.step h3{
    color:#fff;
    font-size:28px;
    margin-bottom:14px;
}

.step p{
    color:#cfcfcf;
    font-size:17px;
    line-height:1.8;
}

@media (max-width:991px){

    .birdfree-how-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .birdfree-image{
        order:1;
    }

    .birdfree-steps{
        order:2;
    }

}
/* =====================================================
   CTA
====================================================== */

.cta{

    position:relative;

    padding:90px 0;

    background:linear-gradient(
        180deg,
        #09131c 0%,
        #08111a 100%);

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:900px;
    height:900px;

    left:-250px;
    top:-320px;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.10),
        transparent 70%);

    filter:blur(70px);

    pointer-events:none;

}

.cta-box{

    position:relative;

    z-index:2;

    max-width:900px;

}

.cta-box h2{

    font-size:56px;

    line-height:1.15;

    margin-bottom:28px;

    color:#fff;

}

.cta-box p{

    font-size:20px;

    line-height:1.8;

    color:#d9dee3;

    margin-bottom:45px;

    max-width:760px;

}
/* ===== Latające ptaki ===== */

.hero-birds{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:3;
}

.bird{
    position:absolute;
    width:42px;
    opacity:.18;
    animation:fly 32s linear infinite;
}

.bird1{
    top:14%;
    left:-80px;
    animation-delay:0s;
}

.bird2{
    top:24%;
    left:-120px;
    width:30px;
    animation-delay:8s;
}

.bird3{
    top:18%;
    left:-160px;
    width:36px;
    animation-delay:16s;
}

.bird4{
    top:30%;
    left:-200px;
    width:26px;
    animation-delay:24s;
}

@keyframes fly{

    0%{
        transform:translateX(0) translateY(0);
        opacity:0;
    }

    10%{
        opacity:.18;
    }

    50%{
        transform:translateX(calc(100vw + 200px)) translateY(-15px);
    }

    90%{
        opacity:.18;
    }

    100%{
        transform:translateX(calc(100vw + 250px)) translateY(-30px);
        opacity:0;
    }

}
.gold{
    color:var(--gold);
}
.single-line-title{

    font-size:52px;

}

.solutions-title{

    white-space: nowrap;

    font-size: 52px;

}

.contact-title{

font-size:52px;

font-weight:800;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:40px;

color:#fff;

}

.footer-logo{

    height:70px;
    width:auto;
    display:block;
    margin-bottom:20px;

}

/* ==========================================
   BIRD FREE HERO
========================================== */

.birdfree-hero{

    position:relative;

    width:100%;

    margin-top:112px;

    }

.birdfree-hero-image{

    width:100%;

    display:block;

    height:auto;

}

/* ==========================================
   BIRD FREE INTRO
========================================== */

.birdfree-intro{

    padding:90px 0;

    text-align:center;

    }

.intro-label{

    display:inline-block;

    padding:10px 22px;

    border:1px solid rgba(212,175,55,.30);

    border-radius:40px;

    color:var(--gold);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:30px;

}

.birdfree-intro h2{

    font-size:60px;

    line-height:1.08;

    margin-bottom:34px;

    font-weight:800;

}

.birdfree-intro h2 span{

    color:var(--gold);

}

.birdfree-intro p{

    max-width:900px;

    margin:auto;

    font-size:21px;

    line-height:1.9;

    color:#d9dee3;

}

/* ==========================================
   BIRD FREE – ZDJĘCIE PRODUKTU
========================================== */

.birdfree-product{

    width:100%;
    max-width:720px;

    margin:50px auto 35px;

}

.birdfree-product img{

    width:100%;
    display:block;

    border-radius:20px;

    box-shadow:0 20px 55px rgba(0,0,0,.40);

}

#birdalert .solution-image img{

    object-position:center top;

}

#birdalert .solution-image img{

    object-position:15% 40%;

}