*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
color:#1e293b;
background-image:url("ilustracje/1.png");
line-height:1.6;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:black;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-weight:700;
font-size:22px;
}
nav a{
text-decoration:none;
color:white;
font-weight:500;
}


.navbar {
  position: relative;
  background: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* MENU */

.menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
  flex-shrink: 0;
}

.menu a {
  display: block;
  padding: 25px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.menu a:hover {
  background: #555;
}

.btn{
background:white;
color:black;
padding:12px 24px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:0.3s;
border:none;
cursor:pointer;
}

.btn:hover{
background:yellow;
}


/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #444;
  top: 100%;
  left: 0;
  min-width: 160px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .menu {
	align-items: center;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #333;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* wyłącz hover na mobile */
  }

  .menu-toggle {
    display: block;
  }
}



/* HERO */


.hero{
padding:120px 8%;
background-image: url ("ilustracje/2.jpeg");
color:#ffd700;
border-top: 1px solid yellow;
}

.hero-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
opacity:0.9;
margin-bottom:30px;
color:white;
}
.hero img{

width:100%;
height:100%;
object-fit:cover;
}


/* TRUST */

.trust{
padding:60px 8%;
text-align:center;
}

.trust h3{
margin-bottom:30px;
color:#ffffff;
}

.logos{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
}

.logo-box{
width:120px;
height:40px;
background:#e2e8f0;
border-radius:6px;
}

/* FEATURES */

.features{
padding:100px 8%;
background:#C0C0C0;
}

.section-title{
font-size:40px;
margin-bottom:60px;
text-align:center;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#ffd700;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}

/* STEPS */

.steps{
padding:100px 8%;
color:white;
}

.step-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.step{
text-align:center;
}

.step-number{
width:50px;
height:50px;
background:#2563eb;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:20px;
font-weight:700;
}

/* FAQ */

.faq{
padding:100px 8%;
background:#f8fafc;
}

.faq-item{
margin-bottom:20px;
border-bottom:1px solid #e2e8f0;
padding-bottom:15px;
}

.faq-question{
cursor:pointer;
font-weight:600;
}

.faq-answer{
display:none;
margin-top:10px;
color:#475569;
}

/* CTA */

.cta{
padding:100px 8%;
background:#0f172a;
color:white;
text-align:center;
}

.cta h2{
font-size:40px;
margin-bottom:20px;
}

/* CONTACT */

.contact{
padding:100px 8%;
color: #ffd700;
}

form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

input,textarea{
padding:14px;
border-radius:8px;
border:1px solid #cbd5e1;
font-size:16px;
}

textarea{
min-height:120px;
}

/* FOOTER */

footer{
background:#020617;
color:#94a3b8;
padding:40px 8%;
text-align:center;
margin-top:80px;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-container{
grid-template-columns:1fr;
}

.hero h1{
font-size:38px;
}

nav ul{
display:none;
}

}