:root{
  --bg:#f7f8fc;
  --bg2:#eef2f7;
  --card:#ffffff;
  --text:#182033;
  --muted:#5f6b85;
  --line:rgba(24,32,51,.10);
  --primary:#d62828;
  --primary2:#ef4444;
  --success:#16a34a;
  --success2:#22c55e;
  --warning:#f97316;
  --warning2:#fb923c;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg),var(--bg2));
  color:var(--text);
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
}

.tiny{font-size:12px}
.muted{color:var(--muted)}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  position:sticky;
  top:0;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  z-index:20;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-logo{
  height:42px;
  width:auto;
  max-width:120px;
  object-fit:contain;
  display:block;
}

.brand-sub{
  font-size:12px;
  color:var(--muted);
}

.brand-name{
  font-weight:900;
  letter-spacing:.3px;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.nav a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}

.nav a:hover{
  color:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  border:1px solid var(--line);
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  border:none;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  color:#fff !important;
  box-shadow:0 8px 18px rgba(214,40,40,.18);
}

.btn-ghost{
  background:#fff;
  color:var(--text) !important;
}

.btn-full{
  width:100%;
}

.hero{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  align-items:center;
  padding-top:46px;
  padding-bottom:38px;
}

.hero-text h1{
  font-size:48px;
  line-height:1.05;
  margin:10px 0 14px;
  letter-spacing:-1.2px;
}

.lead{
  font-size:17px;
  line-height:1.65;
  color:var(--muted);
  max-width:640px;
}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.badges span{
  font-size:12px;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  background:#fff;
  font-weight:700;
}

.hero-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.hero-card h2{
  margin:0 0 8px;
}

.section{
  padding-top:34px;
  padding-bottom:34px;
}

.section h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.15;
  letter-spacing:-.5px;
}

.grid{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.grid-2{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.grid-3{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:20px;
  padding:18px;
  position:relative;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.card h3{
  margin:0 0 8px;
}

.card p{
  line-height:1.6;
}

.card ul{
  margin:0 0 14px 18px;
  padding:0;
  color:var(--muted);
  line-height:1.65;
}

.highlight{
  background:linear-gradient(180deg,rgba(214,40,40,.08),#fff);
}

.tag{
  position:absolute;
  top:12px;
  right:12px;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(214,40,40,.10);
  border:1px solid rgba(214,40,40,.18);
  color:var(--primary);
  font-weight:900;
}

.price{
  font-size:26px;
  font-weight:900;
  margin:10px 0;
  color:var(--text);
}

.price span{
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}

.steps{
  display:grid;
  gap:12px;
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  background:#fff;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
}

.num{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  flex:0 0 auto;
}

.note{
  margin-top:14px;
  border:1px dashed rgba(24,32,51,.18);
  border-radius:16px;
  padding:14px;
  color:var(--muted);
  background:rgba(255,255,255,.7);
}

.form{
  display:grid;
  gap:10px;
  margin-top:10px;
}

label{
  display:grid;
  gap:6px;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}

input,select,textarea{
  width:100%;
  padding:12px 13px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  outline:none;
  font:inherit;
}

input::placeholder,
textarea::placeholder{
  color:#94a3b8;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(214,40,40,.35);
  box-shadow:0 0 0 3px rgba(214,40,40,.08);
}

.footer{
  border-top:1px solid var(--line);
  padding:20px 0;
  margin-top:20px;
  background:#fff;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-weight:700;
}

.footer-links a:hover{
  color:var(--text);
}

.row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.status-badge{
  display:inline-block;
  margin-top:6px;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  border:1px solid var(--line);
}

.status-planned{
  background:#eef2f7;
  color:#64748b;
}

.status-done{
  background:rgba(22,163,74,.10);
  color:#15803d;
  border-color:rgba(22,163,74,.18);
}

.status-cancel,
.status-cancelled{
  background:rgba(239,68,68,.10);
  color:#dc2626;
  border-color:rgba(239,68,68,.18);
}

.btn-solidarity{
  background:linear-gradient(135deg,var(--success),var(--success2));
  color:#fff !important;
  font-weight:800;
  border:none;
}

.btn-maintenance{
  background:linear-gradient(135deg,var(--warning),var(--warning2));
  color:#fff !important;
  font-weight:800;
  border:none;
}

@media (min-width:720px){
  .form{
    grid-template-columns:1fr 1fr;
  }

  .form label{
    grid-column:span 2;
  }

  .form label.two{
    grid-column:span 1;
  }

  .form button{
    grid-column:span 2;
  }
}

@media (max-width:980px){
  .hero{
    grid-template-columns:1fr;
    padding-top:30px;
  }

  .grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .grid-3{
    grid-template-columns:1fr;
  }

  .grid-2{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:40px;
  }
}

@media (max-width:720px){
  .header{
    flex-wrap:wrap;
  }

  .nav{
    width:100%;
    justify-content:center;
    padding-top:10px;
    border-top:1px solid var(--line);
  }

  .nav a{
    padding:6px 10px;
    border-radius:10px;
    border:1px solid var(--line);
    background:#fff;
    font-size:13px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:34px;
  }

.lang-switch{
  display:flex;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap;
}

.lang-btn{
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.lang-btn:hover{
  transform:translateY(-1px);
}

.lang-btn.active{
  background:#d62828;
  color:#fff;
  border-color:#d62828;
}



  .section h2{
    font-size:26px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}