:root{
  --blue:#17318f;
  --blue-dark:#061a5f;
  --blue-deep:#03103f;
  --white:#ffffff;
  --muted:#64748b;
  --slate:#0f172a;
  --light:#f6f8fc;
  --border:#e2e8f0;
  --shadow:0 24px 70px rgba(2,6,23,.18);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:#fff;
  color:#0f172a;
  line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(1180px, calc(100% - 40px));
  margin-inline:auto;
}

.topbar{
  background:var(--blue-deep);
  color:#dbeafe;
  font-size:.92rem;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:9px 0;
  flex-wrap:wrap;
}

.header{
  background:var(--blue);
  color:white;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 10px 30px rgba(2,6,23,.15);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{
  width:74px;
  height:50px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 10px 26px rgba(0,0,0,.2);
}
.brand strong{
  display:block;
  font-size:1.05rem;
  line-height:1.1;
  letter-spacing:.02em;
}
.brand span{
  display:block;
  font-size:.76rem;
  color:#dbeafe;
  text-transform:uppercase;
  letter-spacing:.18em;
}
.menu{
  display:flex;
  gap:28px;
  align-items:center;
  font-weight:700;
  font-size:.94rem;
}
.menu a{opacity:.92}
.menu a:hover{opacity:1;color:#bfdbfe}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:13px 23px;
  font-weight:800;
  border:0;
  cursor:pointer;
  transition:.2s ease;
}
.btn-primary{
  background:var(--blue);
  color:white;
  box-shadow:0 14px 35px rgba(23,49,143,.3);
}
.btn-primary:hover{background:var(--blue-dark);transform:translateY(-1px)}
.btn-white{
  background:white;
  color:var(--blue-dark);
}
.btn-white:hover{transform:translateY(-1px);box-shadow:0 18px 42px rgba(255,255,255,.18)}
.btn-outline{
  color:white;
  border:1px solid rgba(255,255,255,.55);
}
.btn-outline:hover{background:rgba(255,255,255,.12)}

.hero{
  min-height:720px;
  position:relative;
  color:white;
  overflow:hidden;
  background:var(--blue-deep);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("../assets/flotta-giugliano-trasporti.jpeg") center/cover no-repeat;
  transform:scale(1.02);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(3,16,63,.92) 0%, rgba(3,16,63,.72) 42%, rgba(3,16,63,.15) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  min-height:720px;
  display:grid;
  align-items:center;
  padding:80px 0;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#bfdbfe;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.82rem;
  margin-bottom:22px;
}
.kicker::before{
  content:"";
  width:42px;height:3px;border-radius:999px;background:#60a5fa;
}
.hero h1{
  max-width:780px;
  font-size:clamp(2.7rem, 6vw, 5.8rem);
  line-height:.96;
  letter-spacing:-.06em;
  margin-bottom:26px;
}
.hero p{
  max-width:650px;
  font-size:1.22rem;
  color:#e2e8f0;
  margin-bottom:34px;
}
.hero-actions{display:flex;gap:15px;flex-wrap:wrap}
.hero-card{
  position:absolute;
  right:7%;
  bottom:42px;
  z-index:3;
  width:min(460px, calc(100% - 40px));
  background:rgba(255,255,255,.94);
  color:#0f172a;
  border-radius:26px;
  padding:24px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}
.hero-card strong{font-size:1.15rem;display:block;margin-bottom:8px}
.hero-card p{font-size:.98rem;color:var(--muted);margin:0}

.section{padding:92px 0}
.section-light{background:var(--light)}
.section-blue{background:linear-gradient(135deg,var(--blue-deep),var(--blue));color:white}
.section-head{
  max-width:760px;
  margin-bottom:42px;
}
.section-head.center{text-align:center;margin-inline:auto}
.eyebrow{
  color:var(--blue);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.82rem;
  margin-bottom:10px;
}
.section-blue .eyebrow{color:#bfdbfe}
h2{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.05;
  letter-spacing:-.045em;
}
.lead{
  color:var(--muted);
  font-size:1.08rem;
  margin-top:16px;
}
.section-blue .lead{color:#dbeafe}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:white;
  border:1px solid var(--border);
  border-radius:26px;
  padding:30px;
  box-shadow:0 18px 48px rgba(2,6,23,.06);
}
.icon{
  width:54px;height:54px;border-radius:16px;
  background:#dbeafe;
  color:var(--blue);
  display:grid;place-items:center;
  font-size:1.65rem;
  margin-bottom:20px;
}
.card h3{font-size:1.3rem;margin-bottom:10px;letter-spacing:-.02em}
.card p{color:var(--muted)}

.about{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
}
.about-img{
  border-radius:32px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.about-img img{height:430px;width:100%;object-fit:cover}
.stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:28px;
}
.stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:22px;
}
.stat strong{font-size:2rem;color:var(--blue);display:block;line-height:1}
.stat span{color:var(--muted);font-weight:700}

.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.step{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  padding:25px;
}
.step b{
  width:42px;height:42px;border-radius:50%;
  background:white;color:var(--blue);
  display:grid;place-items:center;
  margin-bottom:18px;
}
.step h3{margin-bottom:8px}
.step p{color:#dbeafe;font-size:.96rem}

.contacts{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:stretch;
}
.contact-box{
  background:white;
  border:1px solid var(--border);
  border-radius:28px;
  padding:32px;
  box-shadow:0 18px 50px rgba(2,6,23,.06);
}
.contact-row{
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.contact-row:last-child{border-bottom:0}
.contact-row span{
  display:block;
  color:var(--muted);
  font-size:.85rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.contact-row strong{
  display:block;
  font-size:1.05rem;
  margin-top:4px;
}
.form{
  display:grid;
  gap:14px;
}
.form input,.form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  outline:none;
}
.form textarea{min-height:130px;resize:vertical}
.form input:focus,.form textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(23,49,143,.12);
}
.form button{width:fit-content}

.footer{
  background:#020617;
  color:#94a3b8;
  padding:34px 0;
}
.footer .container{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer strong{color:white}

@media (max-width:900px){
  .menu{display:none}
  .hero,.hero-content{min-height:650px}
  .hero-card{position:relative;right:auto;bottom:auto;margin:-90px auto 40px}
  .grid-3,.about,.process,.contacts{grid-template-columns:1fr}
  .about-img img{height:300px}
}

@media (max-width:560px){
  .container{width:min(100% - 28px,1180px)}
  .topbar{display:none}
  .brand img{width:58px;height:42px}
  .brand strong{font-size:.95rem}
  .hero h1{font-size:2.55rem}
  .hero-actions .btn{width:100%}
  .section{padding:68px 0}
  .stats{grid-template-columns:1fr}
}