*{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}
/* Stangsel.info - klassisk & ren design */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937;
  line-height: 1.65;
  background: #ffffff;
  min-height: 100vh;
}
body * {
  box-sizing: border-box;
}
body img {
  max-width: 100%;
  height: auto;
  display: block;
}
body a {
  color: #0f766e;
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
body .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 12px;
}
header .brand {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  text-decoration: none;
}
header .brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
header .brand span {
  color: #0f766e;
}
header nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
header nav a {
  color: #374151;
  font-size: 15px;
  font-weight: 500;
}
header nav a.active {
  color: #0f766e;
}

.hero {
  position: relative;
  background: #0b1220;
  color: #fff;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0.55;
}
.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-inner .container {
  width: 100%;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 760px;
  color: #fff;
  margin: 0;
}
.hero p {
  margin-top: 14px;
  font-size: 18px;
  max-width: 640px;
  color: #e5e7eb;
}
.btn {
  display: inline-block;
  background: #0f766e;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 22px;
  transition: background 0.15s;
  text-decoration: none;
}
.btn:hover {
  background: #115e59;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff !important;
  margin-left: 10px;
}
.btn-outline:hover {
  background: #fff;
  color: #0b1220 !important;
}

body section {
  padding: 60px 0;
}
body section.alt {
  background: #f8fafc;
}
body h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 10px;
}
.lead {
  font-size: 17px;
  color: #4b5563;
  max-width: 760px;
  margin-bottom: 36px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  color: inherit !important;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body p {
  color: #4b5563;
  font-size: 15px;
  margin: 0 0 14px;
  flex: 1;
}
.card-body .more {
  color: #0f766e;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product img {
  border-radius: 10px;
}
@media (max-width: 760px) {
  .product {
    grid-template-columns: 1fr;
  }
}
.product h2 {
  margin-bottom: 18px;
}
.product p {
  margin-bottom: 16px;
  color: #374151;
}
.product ul {
  margin: 14px 0 22px 22px;
  color: #374151;
}
.product li {
  margin-bottom: 6px;
}
.cta-box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 24px;
  border-radius: 10px;
  margin-top: 24px;
}
.cta-box h3 {
  color: #065f46;
  margin-bottom: 8px;
}
.cta-box p {
  color: #065f46;
  margin-bottom: 14px;
}

footer {
  background: #0b1220;
  color: #9ca3af;
  padding: 40px 0 30px;
  margin-top: 40px;
  font-size: 14px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer a {
  color: #cbd5e1 !important;
}
.faq dt {
  font-weight: 600;
  color: #111827;
  margin-top: 18px;
}
.faq dd {
  margin: 6px 0 0 0;
  color: #4b5563;
}

header nav a.cta-link {
  background: #0f766e;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
}
header nav a.cta-link:hover {
  background: #115e59;
  text-decoration: none;
}
.form-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.form-iframe {
  width: 100%;
  height: 1400px;
  border: 0;
  display: block;
}
@media (max-width: 760px) {
  .form-iframe { height: 1800px; }
}
