* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1e2430;
  line-height: 1.6;
  background: #ffffff;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.25; color: #0d1b2a; }
h2 { font-size: 2rem; margin-bottom: 10px; }

.section-sub { color: #4b5563; margin-bottom: 30px; max-width: 700px; }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.2s ease;
}

.btn-primary { background: #f5a623; color: #0d1b2a; }
.btn-primary:hover { background: #d98f10; }

.btn-secondary { background: transparent; color: #ffffff; border: 2px solid #ffffff; }
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

.btn-header { background: #0d1b2a; color: #ffffff; padding: 10px 18px; font-size: 0.9rem; }
.btn-header:hover { background: #1c2e42; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d1b2a;
}
.logo span { color: #f5a623; }

.main-nav ul { display: flex; gap: 26px; }
.main-nav a { font-weight: 500; color: #0d1b2a; }
.main-nav a:hover { color: #f5a623; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0d1b2a, #1b3a57);
  color: #ffffff;
  padding: 80px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text { flex: 1; min-width: 300px; }
.hero-text h1 { font-size: 2.6rem; color: #ffffff; margin-bottom: 18px; }
.hero-text p { font-size: 1.1rem; margin-bottom: 28px; color: #d7e2ec; max-width: 550px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  flex: 1;
  min-width: 280px;
  min-height: 280px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="300"><rect width="400" height="300" fill="%23123049"/><text x="50%25" y="50%25" fill="%23f5a623" font-size="28" text-anchor="middle" dominant-baseline="middle">⚡ Voltway</text></svg>') center/cover no-repeat;
  border-radius: 10px;
}

/* Trust bar */
.trust-bar { background: #f5a623; padding: 18px 0; }
.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
  color: #0d1b2a;
}

/* Services */
.services { padding: 80px 0; background: #f8f9fb; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  border-top: 4px solid #f5a623;
}
.service-card h3 { margin-bottom: 10px; }

/* About */
.about { padding: 80px 0; }
.about-inner { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.about-image {
  flex: 1;
  min-width: 280px;
  min-height: 280px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="300"><rect width="400" height="300" fill="%23e9edf1"/><text x="50%25" y="50%25" fill="%230d1b2a" font-size="22" text-anchor="middle" dominant-baseline="middle">Vårt team</text></svg>') center/cover no-repeat;
  border-radius: 10px;
}
.about-text { flex: 1; min-width: 300px; }
.about-list li { margin-bottom: 10px; padding-left: 22px; position: relative; }
.about-list li::before { content: "✔"; position: absolute; left: 0; color: #f5a623; }

/* Testimonials */
.testimonials { padding: 80px 0; background: #0d1b2a; color: #ffffff; }
.testimonials h2 { color: #ffffff; text-align: center; margin-bottom: 40px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  padding: 26px;
  border-radius: 8px;
}
.testimonial-card span { display: block; margin-top: 14px; color: #f5a623; font-weight: 600; }

/* Contact */
.contact { padding: 80px 0; background: #f8f9fb; }
.contact-inner { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 280px; }
.contact-info ul { margin: 20px 0; }
.contact-info li { margin-bottom: 10px; }
.social-links { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.social-links a { color: #0d1b2a; font-weight: 600; }
.social-links a:hover { color: #f5a623; }

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.contact-form label { font-weight: 600; margin-top: 14px; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form button { margin-top: 22px; }
.form-status { margin-top: 12px; font-weight: 600; color: #16794d; }

/* Footer */
.site-footer { background: #0d1b2a; color: #d7e2ec; padding: 50px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.footer-col { flex: 1; min-width: 200px; }
.footer-col h4 { color: #ffffff; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a:hover { color: #f5a623; }
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Legal page */
.legal-page { padding: 60px 0 80px; }
.legal-page h1 { margin-bottom: 20px; }
.legal-page h2 { margin-top: 30px; margin-bottom: 10px; font-size: 1.4rem; }
.legal-page p, .legal-page ul { margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; list-style: disc; }
.legal-page .btn { margin-top: 30px; }

/* Responsive */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .btn-header { display: none; }
  .hero-text h1 { font-size: 2rem; }
}

.main-nav.open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: #ffffff; border-bottom: 1px solid #eee; }
.main-nav.open ul { flex-direction: column; padding: 20px; gap: 16px; }
