*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#000000;
  color:#ffffff;
}

/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
  background:#000000;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  line-height:1;
}

.logo-main{
  font-size:22px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#ffffff;
  text-shadow:0 0 8px rgba(255,255,255,0.35);
}

.logo-sub{
  font-size:11px;
  letter-spacing:5px;
  margin-top:6px;
  color:#ffffff;
  text-align:center;
  text-shadow:0 0 8px rgba(255,255,255,0.25);
}

/* MENU */
.menu{
  font-size:34px;
  color:#ffffff;
  cursor:pointer;
  line-height:1;
  text-shadow:0 0 8px rgba(255,255,255,0.25);
}

/* DROPDOWN */
.dropdown{
  position:fixed;
  top:78px;
  right:12px;
  width:240px;
  background:#000000;
  border-radius:10px;
  box-shadow:0 16px 35px rgba(0,0,0,0.35);
  display:none;
  flex-direction:column;
  overflow:hidden;
  z-index:1100;
  border:1px solid rgba(255,255,255,0.08);
}

.dropdown a{
  color:#ffffff;
  text-decoration:none;
  padding:15px 16px;
  font-size:16px;
  font-weight:600;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.dropdown a:last-child{
  border-bottom:none;
}

/* HERO */
.hero-slider{
  position:relative;
  height:470px;
  overflow:hidden;
  background:#000000;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.02);
  transition:opacity 1s ease, transform 5s ease;
}

.hero-slide.active{
  opacity:1;
  transform:scale(1.07);
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:24px;
  background:rgba(0,0,0,0.42);
}

.hero-overlay h1{
  font-size:42px;
  line-height:1.15;
  margin:0 0 16px;
  color:#ffffff;
  max-width:900px;
}

.hero-overlay p{
  font-size:20px;
  line-height:1.8;
  margin:0;
  max-width:760px;
  color:#ffffff;
}

/* ENKEL HERO */
.hero-image{
  width:100%;
  height:320px;
  background-size:cover;
  background-position:center;
}

/* VITA SECTIONS */
.section{
  max-width:980px;
  margin:0 auto;
  padding:52px 22px;
  text-align:center;
  background:#ffffff;
}

.section h1{
  color:#111111;
  margin:0 0 16px;
  font-size:38px;
  line-height:1.2;
}

.section p{
  color:#333333;
  margin:0 auto 18px;
  max-width:780px;
  line-height:1.9;
  font-size:18px;
}

/* PROCESS */
.process{
  max-width:980px;
  margin:0 auto;
  padding:26px 22px 52px;
  background:#ffffff;
}

.process-step{
  display:flex;
  flex-direction:column;
  gap:0;
  margin-bottom:30px;
  background:#f4f5f7;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

.process-img{
  width:100%;
}

.process-img img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.process-content{
  width:100%;
  padding:22px;
  text-align:left;
}

.number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  background:#79bfd0;
  color:#ffffff;
  border-radius:50%;
  font-weight:700;
  font-size:18px;
  margin-bottom:12px;
}

.process-content h3{
  font-size:28px;
  line-height:1.3;
  margin:0 0 12px;
  color:#1a1a1a;
}

.process-content p{
  font-size:17px;
  line-height:1.9;
  color:#444444;
  margin:0;
}

/* AREA */
.area-images{
  padding:0 20px 20px;
  background:#ffffff;
}

.area-image{
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  margin-bottom:34px;
}

.area-slider{
  height:260px;
  position:relative;
  border-radius:18px;
  overflow:hidden;
}

.area-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 0.8s ease;
}

.area-slide.active{
  opacity:1;
}

.area-image h3{
  margin:18px 0 6px;
  padding:0 4px;
  font-size:26px;
  font-weight:700;
  letter-spacing:0.4px;
  color:#111111;
  text-align:left;
}

/* TEXT UNDER OMRÅDEN */
.area-image p{
  color:#111111;
  font-size:16px;
  line-height:1.8;
  margin:0;
  padding:0 4px;
  text-align:left;
}

/* CTA KNAPP */
.btn{
  display:block;
  width:100%;
  max-width:420px;
  margin:30px auto;
  padding:18px 20px;
  background:#000000;
  color:#ffffff;
  text-align:center;
  font-weight:700;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:999px;
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
}

.btn:hover{
  background:#111111;
  transform:scale(1.02);
  transition:0.2s;
}

/* FORM */
form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

input,
select,
textarea{
  width:100%;
  padding:16px 18px;
  border-radius:14px;
  border:1px solid #d9d9d9;
  background:#ffffff;
  color:#111111;
  font-size:15px;
  outline:none;
}

textarea{
  min-height:110px;
  resize:vertical;
}

button{
  display:inline-block;
  width:auto;
  min-width:210px;
  padding:16px 22px;
  background:#000000;
  color:#ffffff;
  border:none;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

/* FOOTER */
.footer{
  background:#000000;
  padding:50px 20px 110px;
}

.footer-top{
  text-align:center;
  margin-bottom:34px;
}

.footer-top .logo{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.footer-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:flex-start;
  max-width:980px;
  margin:0 auto;
}

.footer-columns div:nth-child(2){
  border-left:1px solid rgba(255,255,255,0.10);
  padding-left:24px;
}

.footer h3{
  color:#ffffff;
  margin:0 0 18px;
  font-size:22px;
}

.footer p{
  color:#d7d7d7;
  line-height:1.8;
  font-size:16px;
}

.footer a{
  color:#d7d7d7;
  text-decoration:none;
  line-height:1.9;
  font-size:16px;
}

/* WHATSAPP */
.whatsapp-btn{
  position:fixed;
  bottom:15px;
  right:15px;
  background:#071a2d;
  color:#ffffff;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  z-index:1200;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

/* MOBILE */
@media(max-width:640px){

  .hero-slider{
    height:360px;
  }

  .hero-overlay h1{
    font-size:28px;
  }

  .hero-overlay p{
    font-size:15px;
  }

  .hero-image{
    height:250px;
  }

  .section{
    padding:40px 20px;
  }

  .section h1{
    font-size:28px;
  }

  .section p{
    font-size:16px;
  }

  .process-step{
    flex-direction:column;
  }

  .process-img img{
    height:240px;
  }

  .process-content{
    padding:18px;
  }

  .process-content h3{
    font-size:24px;
  }

  .process-content p{
    font-size:15px;
    line-height:1.8;
  }

  .area-slider{
    height:210px;
  }

  .area-image h3{
    font-size:20px;
  }

  .area-image p{
    font-size:15px;
    line-height:1.7;
  }

  .footer-columns{
    grid-template-columns:1fr;
  }

  .footer-columns div:nth-child(2){
    border-left:none;
    padding-left:0;
  }

}