:root{
  --bg:#bfc5cc;
  --bg2:#aeb5be;
  --bg3:#d7dbe0;

  --card:#f8f9fb;
  --text:#172033;
  --muted:#5d6676;
  --line:rgba(23,32,51,.18);

  --primary:#d62828;
  --primary2:#ef4444;

  --warning:#f97316;
  --warning2:#fb923c;

  --green:#16a34a;
  --blue:#2563eb;

  --shadow:0 18px 45px rgba(15,23,42,.16);
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);

  background:
    linear-gradient(
      rgba(191,197,204,.94),
      rgba(174,181,190,.96)
    ),
    url("woule-auto-care-watermark.png");

  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.04) 2px,
      transparent 2px,
      transparent 16px
    );
  z-index:-2;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:url("woule-auto-care-watermark.png") center center no-repeat;
  background-size:640px;
  opacity:.07;
  animation:watermarkFloat 13s ease-in-out infinite;
  z-index:-1;
}

@keyframes watermarkFloat{
  0%{
    transform:translateY(0px) rotate(0deg);
  }

  50%{
    transform:translateY(-10px) rotate(.7deg);
  }

  100%{
    transform:translateY(0px) rotate(0deg);
  }
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  max-width:1120px;
  margin:0 auto;
  padding:18px;
}

.section{
  padding-top:28px;
  padding-bottom:42px;
}

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;

  position:sticky;
  top:0;
  z-index:50;

  background:rgba(230,234,239,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 26px rgba(15,23,42,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  height:56px;
  width:auto;
  max-width:200px;
  object-fit:contain;
  display:block;
}

.brand-sub,
.tiny{
  font-size:12px;
}

.muted{
  color:var(--muted);
}

.hero-lite{
  border:1px solid rgba(255,255,255,.25);
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.92),
      rgba(233,237,242,.92)
    );
  border-radius:30px;
  padding:28px;
  margin-bottom:18px;
  box-shadow:var(--shadow);
}

.hero-lite h1{
  margin:10px 0;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-1px;
}

.hero-lite p{
  font-size:16px;
  line-height:1.65;
}

.pill,
.badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(23,32,51,.10);
  background:#eef2f6;
}

.card{
  background:rgba(248,249,251,.96);
  border:1px solid rgba(255,255,255,.28);
  border-radius:26px;
  padding:18px;
  box-shadow:0 14px 34px rgba(15,23,42,.12);
}

.card h3{
  margin-top:0;
}

.highlight{
  background:
    linear-gradient(
      180deg,
      rgba(249,115,22,.14),
      rgba(248,249,251,.98)
    );
}

.pro-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.full{
  grid-column:1/-1;
}

label{
  display:grid;
  gap:7px;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

input,
select,
textarea{
  width:100%;
  padding:14px 15px;
  border-radius:15px;
  border:1px solid rgba(23,32,51,.16);
  background:rgba(241,244,247,.96);
  color:var(--text);
  font:inherit;
  outline:none;
}

select[multiple]{
  min-height:130px;
}

input::placeholder,
textarea::placeholder{
  color:#98a2b2;
}

input:focus,
select:focus,
textarea:focus{
  background:#fff;
  border-color:rgba(214,40,40,.45);
  box-shadow:0 0 0 4px rgba(214,40,40,.10);
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:7px;

  padding:12px 16px;
  border-radius:15px;
  border:1px solid rgba(23,32,51,.12);

  font-weight:900;
  cursor:pointer;
  background:#eef1f5;
  color:var(--text);
  transition:.18s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(15,23,42,.10);
}

.btn:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.btn-primary{
  border:none;
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  box-shadow:0 12px 26px rgba(214,40,40,.24);
}

.btn-maintenance{
  border:none;
  color:#fff;
  background:linear-gradient(135deg,var(--warning),var(--warning2));
  box-shadow:0 12px 26px rgba(249,115,22,.22);
}

.btn-ghost{
  background:#e2e7ec;
}

.btn-full{
  width:100%;
}

.lang-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.lang-btn{
  border:none;
  background:#dde3ea;
  color:var(--text);
  border-radius:999px;
  padding:9px 14px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}

.lang-btn:hover{
  transform:translateY(-1px);
}

.lang-btn.active{
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  color:#fff;
}

.row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
  margin:16px 0;
}

.stat-card{
  background:linear-gradient(180deg,#f9fafb,#e8edf2);
  padding:16px;
}

.stat-card h3{
  margin:6px 0 0;
  font-size:22px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.job-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.job-card.urgent{
  border-color:rgba(249,115,22,.44);
  background:
    linear-gradient(
      180deg,
      rgba(249,115,22,.14),
      rgba(248,249,251,.98)
    );
}

.job-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}

.job-top h3{
  margin:6px 0 8px;
}

.job-status{
  margin:8px 0;
}

.mini-block{
  border:1px solid rgba(23,32,51,.10);
  background:#e7ecf1;
  border-radius:16px;
  padding:12px;
  margin:10px 0;
  font-size:13px;
  line-height:1.6;
}

.green{
  color:#15803d;
  background:rgba(22,163,74,.12);
}

.yellow{
  color:#b45309;
  background:rgba(245,158,11,.14);
}

.blue{
  color:#1d4ed8;
  background:rgba(37,99,235,.12);
}

.red{
  color:#dc2626;
  background:rgba(239,68,68,.12);
}

.gray{
  color:#475569;
  background:#dfe5eb;
}

.error-box{
  border-color:rgba(220,38,38,.25);
}

/* VIDEO PAGE */

.video-section{
  width:100%;
  text-align:center;
  margin:30px auto;
}

.video-box{
  width:100%;
  max-width:800px;
  margin:0 auto;
  border-radius:24px;
  overflow:hidden;
  background:#dfe5eb;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.video-box video{
  width:100%;
  aspect-ratio:16/9;
  display:block;
  object-fit:cover;
  background:#000;
}

.video-placeholder{
  min-height:260px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:24px;
  background:
    linear-gradient(rgba(223,229,235,.88),rgba(223,229,235,.88)),
    url("woule-auto-care-watermark.png") center center no-repeat;
  background-size:420px;
}

.play-circle{
  width:76px;
  height:76px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  color:#fff;
  font-size:30px;
  box-shadow:0 14px 30px rgba(214,40,40,.25);
}

.step-card{
  position:relative;
}

.step-number{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,var(--warning),var(--warning2));
  margin-bottom:12px;
}

footer .card{
  margin-bottom:24px;
}

@media(max-width:980px){
  .stats-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .grid-3,
  .job-grid,
  .pro-form{
    grid-template-columns:1fr;
  }

  .hero-lite h1{
    font-size:33px;
  }

  .video-box{
    max-width:92%;
  }
}

@media(max-width:620px){
  .header{
    flex-wrap:wrap;
  }

  .brand-logo{
    height:48px;
  }

  .hero-lite{
    padding:22px;
  }

  .hero-lite h1{
    font-size:29px;
  }

  .stats-grid{
    grid-template-columns:1fr;
  }

  .btn{
    width:100%;
  }

  .lang-row{
    width:100%;
  }

  .lang-btn{
    flex:1;
  }

  .video-section{
    margin:18px auto;
  }

  .video-box{
    max-width:100%;
    border-radius:18px;
  }

  .video-box video{
    border-radius:18px;
  }
}