:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --text: #14181f;
  --text-soft: #5f6b7a;
  --border: #e4e8ee;
  --dark: #1c222b;
  --accent: #d62f2f;
  --accent-dark: #a91f1f;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: 16px; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }



.site-header{
  position: sticky;
  top:0;
  z-index:100;
  background: rgba(245,247,250,.96);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  padding:12px 0;
}

.header-wrap{
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 58px; height: 58px; border-radius: 16px; background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(214,47,47,.22);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 1.25rem; text-transform: uppercase; letter-spacing: -.02em; }
.logo-text small { color: var(--accent-dark); font-weight: 800; margin-top: 4px; }
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img{
  height: 120px;
  width: auto;
  display: block;
}
.main-nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.main-nav a { font-weight: 700; color: var(--text-soft); transition: .2s ease; }
.main-nav a:hover { color: var(--text); }
.header-actions { display: flex; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px;
  padding: 0 18px; border-radius: 14px; font-weight: 800; transition: .2s ease; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { min-height: 54px; padding: 0 22px; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 18px rgba(214,47,47,.22); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-dark { background: var(--dark); color: var(--white); box-shadow: 0 8px 18px rgba(0,0,0,.12); }
.btn-dark:hover { opacity: .92; }
.btn-light { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-light:hover { background: rgba(255,255,255,.22); }
.nav-toggle {
  display: none; width: 52px; height: 52px; border: 1px solid var(--border); border-radius: 14px; background: #fff;
  cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 999px; }
.hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(15,20,28,.84) 0%, rgba(15,20,28,.66) 45%, rgba(15,20,28,.48) 100%),
              url("../img/hero-rottami-emiliano.jpg") center center / cover no-repeat;
  color: var(--white);
}
.hero-content { position: relative; z-index: 2; padding: 92px 0 86px; }
.hero-text { max-width: 760px; padding: 20px 0; }
.eyebrow, .section-label {
  display: inline-block; margin-bottom: 16px; font-size: .92rem; font-weight: 900; letter-spacing: .05em;
  text-transform: uppercase; color: var(--accent);
}
.hero h1 { margin: 0 0 20px; font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.04; letter-spacing: -.03em; max-width: 840px; }
.hero-description { max-width: 680px; font-size: 1.12rem; line-height: 1.75; color: rgba(255,255,255,.9); }
.hero-highlight { color: #ff5757; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-actions .btn { min-width: 190px; }
.trust-bar { background: var(--dark); color: var(--white); padding: 18px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item { text-align: center; font-weight: 700; color: rgba(255,255,255,.9); }
.section { padding: 84px 0; }
.section-alt { background: var(--bg-soft); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; }
.section p { color: var(--text-soft); }
.cards-grid, .contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card, .contact-card-big, .step-card, .area-box, .contact-info-box {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px; box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.2rem; }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 42px; align-items: center; }
.check-list { list-style: none; margin: 24px 0 28px; padding: 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-weight: 600; }
.check-list li::before { content: "•"; position: absolute; left: 8px; top: -1px; color: var(--accent); font-size: 1.3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; }
.cta-section { padding-top: 20px; }
.cta-banner {
  background: linear-gradient(135deg, #1c222b 0%, #2a3440 100%); border-radius: 26px; padding: 38px; color: var(--white);
  display: grid; grid-template-columns: 1.4fr auto; gap: 24px; align-items: center;
}
.cta-banner p { color: rgba(255,255,255,.86); }
.cta-banner-actions { display: flex; flex-direction: column; gap: 12px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { transition: transform .25s ease, box-shadow .25s ease; }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.1); }
.step-icon {
  width: 68px; height: 68px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; font-weight: 900; line-height: 1; margin-bottom: 18px; box-shadow: 0 10px 20px rgba(214,47,47,.25);
}
.step-card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.step-card p { margin: 0; color: var(--text-soft); }
.step-card h3::before { content: ""; display: block; width: 42px; height: 4px; border-radius: 999px; background: var(--accent); margin-bottom: 14px; }
.page-hero { padding: 96px 0 72px; }
.page-hero-dark { background: linear-gradient(135deg, #1b222c 0%, #2a3440 100%); color: #fff; }
.page-hero-light { background: #f5f7fa; color: var(--text); }
.page-hero-text { max-width: 760px; font-size: 1.08rem; color: rgba(255,255,255,.88); }
.page-hero-light .page-hero-text, .dark-text { color: var(--text-soft); }
.contact-hero { padding: 88px 0 56px; background: linear-gradient(135deg, #f5f7fa 0%, #eef2f6 100%); }
.contact-intro { max-width: 760px; font-size: 1.08rem; color: var(--text-soft); }
.contact-main-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
.contact-phone-main {
  display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 24px; border-radius: 18px;
  background: var(--dark); color: var(--white); font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 900; box-shadow: var(--shadow);
}
.contact-card-big { transition: transform .25s ease, box-shadow .25s ease; }
.contact-card-big:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }
.contact-icon {
  width: 56px; height: 56px; min-width: 56px; min-height: 56px; border-radius: 16px; background: rgba(214,47,47,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; overflow: hidden; flex-shrink: 0;
}
.contact-icon svg { display: block; width: 26px !important; height: 26px !important; fill: var(--accent-dark); flex-shrink: 0; }
.contact-card-big h2 { margin: 0 0 10px; font-size: 1.15rem; line-height: 1.2; }
.contact-link { display: inline-flex; align-items: center; gap: 6px; font-size: 1rem; font-weight: 800; color: var(--dark); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; transition: color .2s ease; margin-bottom: 12px; }
.contact-link:hover { color: var(--accent-dark); }
.contact-card-big p { margin: 0; color: var(--text-soft); }
.email-break { overflow-wrap: anywhere; word-break: break-word; }
.map-desktop iframe { width: 100%; height: 420px; border: 0; border-radius: 20px; box-shadow: var(--shadow); }
.mobile-directions { display: none; margin-top: 20px; }
.site-footer { padding: 72px 0 150px; background: #10151b; color: rgba(255,255,255,.9); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
.site-footer h3 { margin-top: 0; color: var(--white); }
.site-footer p, .site-footer a { color: rgba(255,255,255,.8); }
.footer-bottom { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
.floating-cta { position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 10px; z-index: 120; }
.floating-cta a { min-width: 144px; text-align: center; padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow); font-weight: 900; }
.floating-call { background: var(--dark); color: var(--white); }
.floating-wa { background: #25d366; color: var(--white); }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 42px; margin-bottom: 14px; font-size: 1.5rem; }
.legal-content p, .legal-content li { color: var(--text-soft); font-size: 1rem; }
.legal-content ul { padding-left: 22px; }
:root{
  --accent:#d32f2f;
  --accent-dark:#b71c1c;
}
.btn-accent{
  background:#d32f2f;
  color:#fff;
}

.btn-accent:hover{
  background:#b71c1c;
}

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 0 6px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .trust-grid, .cards-grid, .gallery-grid, .footer-grid, .split, .cta-banner, .steps-grid, .contact-cards-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 240px; }
  .cta-banner-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  body { padding-bottom: 96px; }
  .header-wrap { flex-wrap: wrap; align-items: center; gap: 16px; padding: 14px 0; min-height: auto; }
  .logo { flex: 1; justify-content: flex-start; }
  .logo-mark { width: 50px; height: 50px; }
  .logo-text strong { font-size: 1.05rem; }
  .header-actions { width: 100%; }
  .header-actions .btn { flex: 1; }
  .hero { min-height: auto; background-position: center; }
  .hero-content { padding: 72px 0 64px; }
  .hero h1 { font-size: clamp(2.1rem, 8vw, 3.2rem); line-height: 1.06; }
  .hero-description { font-size: 1rem; line-height: 1.65; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .section { padding: 64px 0; }
  .card, .contact-card-big, .step-card { padding: 24px; }
  .cta-banner { padding: 28px; }
  .contact-hero { padding: 72px 0 48px; }
  .contact-main-actions { flex-direction: column; align-items: stretch; }
  .contact-phone-main { width: 100%; text-align: center; }
  .map-desktop { display: none; }
  .mobile-directions { display: block; }
  .floating-cta { left: 12px; right: 12px; bottom: 12px; }
  .floating-cta a { min-width: auto; }
   .header-wrap{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
  }

  .logo{
    width:100%;
    justify-content:center;
  }

  .logo img{
    height:70px;
  }

}
