
:root{
--turkus:#0F766E;
--turkus-2:#14B8A6;
--zloto:#D4A017;
--ciemny:#1F2937;
--jasny:#F8FAFC;
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:"Segoe UI",sans-serif;
color:var(--ciemny);
line-height:1.7;
background:white;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:80px;
}

nav a{
text-decoration:none;
margin-left:30px;
color:var(--ciemny);
font-weight:600;
}

nav a:hover{
color:var(--turkus);
}

.hero{
background:linear-gradient(
135deg,
var(--turkus),
var(--turkus-2));
color:white;
padding:120px 0;
text-align:center;
}

.hero h1{
font-size:3rem;
max-width:900px;
margin:auto;
}

.hero p{
margin:25px auto;
max-width:700px;
font-size:1.2rem;
}

.btn{
display:inline-block;
background:var(--zloto);
color:white;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

.btn:hover{
background:#bc8f00;
}

.section{
padding:100px 0;
}

.grey{
background:#f4f7f7;
}

h2{
text-align:center;
margin-bottom:40px;
font-size:2.2rem;
color:var(--turkus);
}

.lead{
max-width:900px;
margin:auto;
text-align:center;
font-size:1.15rem;
}

.stats{
display:flex;
gap:30px;
justify-content:center;
margin-top:50px;
flex-wrap:wrap;
}

.stat{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
text-align:center;
width:250px;
}

.stat h3{
font-size:2.3rem;
color:var(--zloto);
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.card{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

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

.card h3{
color:var(--turkus);
margin-bottom:15px;
}

.process{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
text-align:center;
}

.process span{
display:inline-block;
width:60px;
height:60px;
line-height:60px;
border-radius:50%;
background:var(--zloto);
color:white;
font-weight:bold;
margin-bottom:15px;
}

.pricing{
background:var(--turkus);
padding:100px 0;
color:white;
text-align:center;
}

.price-box{
max-width:500px;
margin:auto;
}

.amount{
font-size:4rem;
font-weight:bold;
color:var(--zloto);
}

.period{
font-size:1.3rem;
margin-bottom:20px;
}

.contact{
padding:100px 0;
}

.contact-box{
display:flex;
justify-content:center;
gap:80px;
flex-wrap:wrap;
margin-top:40px;
}

.contact-box div{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
width:300px;
text-align:center;
}

footer{
background:#0c4f4b;
color:white;
text-align:center;
padding:25px;
}

@media(max-width:768px){

.hero h1{
font-size:2rem;
}

.nav-container{
flex-direction:column;
}

nav{
margin-top:15px;
}

nav a{
display:block;
margin:10px 0;
text-align:center;
}
}
