:root {
  --bg: #050608;
  --bg-elevated: #0c0f13;
  --border-subtle: #262a31;
  --accent: #f4c15d;
  --accent-soft: rgba(244, 193, 93, 0.18);
  --text-main: #f5f5f5;
  --text-muted: #b4b9c3;
  --radius-lg: 18px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --container-width: 1120px;
}

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151924 0, #050608 55%);
  color: var(--text-main);
  line-height: 1.6;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrapper img {
  height: 56px;
  border-radius: 12px;
}

.logo-wrapper span {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* HERO */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 18px 60px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("20251201_183807.jpg") center / cover no-repeat fixed;
  opacity: 0.42;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.25), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.96));
  z-index: -1;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 3.4vw + 1rem, 3.8rem);
}

.hero .lead {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--text-muted);
}

.hero-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.price-pill {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  background: rgba(5, 6, 8, 0.75);
  font-size: 0.93rem;
}

.price-pill strong {
  color: var(--accent);
}

/* BUTTONS */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.12s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1c1104;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #ffd873;
  transform: translateY(-1px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.7);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

/* GENERELLE SEKSJONER */
.section {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 60px 18px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.section-lead {
  margin: 0 0 24px;
  color: var(--text-muted);
}

/* CARD */
.card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}

/* PRISER GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  background: radial-gradient(circle at top left, rgba(244, 193, 93, 0.08), transparent 60%),
              var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 20px 22px 22px;
}

.price-card h3 { margin: 0 0 4px; }

.price-card .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 6px 0 10px;
}

.pricing-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.text-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.text-link:hover {
  color: var(--accent);
}

/* FOOTER */
footer {
  padding: 22px 18px 26px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--text-muted);
  background: #050608;
}

/* ANIMASJONER */
.fade-in {
  animation: fadeInUp 0.7s ease-out both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIV DESIGN */
@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  nav a { margin-left: 0; }

  .hero {
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .hero-inner {
    text-align: left;
  }

  .hero .lead {
    max-width: 100%;
  }

  .pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
