/* Allmän reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 20% 20%, #1e293b, #020617 60%);
  color: #e2e8f0;
  line-height: 1.6;
} 

body {
  animation: fadePage 0.6s ease;
}

@keyframes fadePage {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.container {
  display: flex;
  justify-content: center;  
  align-items: center;     
  height: 100vh;            
}

.logo {
  width: 150px; 
} 
nav .nav-links {
  display: flex;
  align-items: center;
}
nav .nav-links a {
  margin-left: 20px;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav .nav-links a:hover {
  color: #38bdf8;
}
nav .nav-links a.btn-nav {
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
  padding: 8px 15px;
  border-radius: 5px;
  color: #0b0f1a;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 3rem;
}
.hero h1 span {
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  color: transparent;
}
.hero p {
  margin-top: 15px;
  color: #cbd5e1;
  font-size: 1.1rem;
}
.cta {
  margin-top: 30px;
}

/* KNAPPAR */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
  border: none;
}
.btn-primary:hover {
  transform: scale(1.05);
}
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #38bdf8;
  border-radius: 10px;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
}
.btn-secondary:hover {
  transform: scale(1.05);
  background: #38bdf8;
  color: #0b0f1a;
}

/* TRUST-SEKTION */
.trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item h3 {
  font-size: 2rem;
  color: #38bdf8;
  margin-bottom: 5px;
}
.trust-item p {
  color: #cbd5e1;
}

/* SEKTIONER */
.section {
  padding: 80px 60px;
  text-align: center;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}
.section p {
  color: #cbd5e1;
  margin-bottom: 20px;
}
.section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  text-align: left;
}
.section ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
}
.section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.section {
  padding: 80px 60px;
  text-align: center;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #38bdf8;
  filter: blur(120px);
  opacity: 0.1;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

/* GRID KORT */
.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.card {
  flex: 1;
  min-width: 250px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 0 40px rgba(56,189,248,0.2);
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  color: #cbd5e1;
}

/* TEAM */
.team-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.member {
  text-align: center;
  flex: 1;
  min-width: 200px;
}
.member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.member h3 {
  margin: 10px 0;
}
.member p {
  color: #cbd5e1;
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s;
}
.testimonial:hover {
  transform: translateY(-5px);
}
.testimonial p {
  font-style: italic;
  color: #cbd5e1;
}
.testimonial h4 {
  text-align: right;
  margin-top: 10px;
  color: #38bdf8;
}

/* KONTAKTFORMULÄR */
.contact-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.contact-form {
  flex: 1;
}
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #fff;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 5px;
  background: #1e293b;
  color: #fff;
  margin-bottom: 15px;
}
.contact-info .info-item h3 {
  margin-bottom: 5px;
  color: #38bdf8;
}
.contact-info .info-item p {
  color: #cbd5e1;
}

/* CTA-AVSLUTNING */
.cta-final {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
}
.cta-final h2 {
  color: #fff;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  background: linear-gradient(to top, #020617, transparent);
  color: #94a3b8;
}

/* RESPONSIV */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .grid {
    flex-direction: column;
  }
} 
