@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #0a0f1c;
  --bg-card: #111827;
  --bg-card2: #1a2235;
  --blue: #3b82f6;
  --blue-hover: #2563eb;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: #1e2d45;
}

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

body {
  font-family: 'Sora', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(10, 15, 28, 0.92) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .g-icon {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.navbar-brand span.brand-blue {
  color: var(--blue);
}

.nav-link {
  color: var(--muted) !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  padding: 0.4rem 0.8rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text) !important;
}

.btn-tilbud {
  background: var(--blue);
  color: white !important;
  border-radius: 8px;
  padding: 0.45rem 1.1rem !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.btn-tilbud:hover {
  background: var(--blue-hover) !important;
  color: white !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.discordapp.com/attachments/1414317445426057236/1490359732261621760/966d6a86-c8e8-4d90-9da0-f80edcbf8daf.png?ex=69d3c529&is=69d273a9&hm=00768cd3d87e97b7042a701c14c0bbfbb217b4e4b8885924122f0c1ae28f9f50&');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-dark) 50%, rgba(59,130,246,0.08) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 .blue {
  color: var(--blue);
}

.hero p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary-custom:hover {
  background: var(--blue-hover);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 550px;
  line-height: 1.7;
}

/* ── CARDS ── */
.card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.2s;
  height: 100%;
}

.card-dark:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(59,130,246,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.card-dark h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.card-dark p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── CLIENTS STRIP ── */
.clients-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.clients-strip .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-align: center;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.client-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.client-pill:hover {
  color: var(--text);
  border-color: var(--blue);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #1a2a4a 0%, #0f1d35 100%);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ── FORM ── */
.form-control-dark {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s;
}

.form-control-dark:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--bg-card);
  color: var(--text);
}

.form-control-dark::placeholder {
  color: var(--muted);
}

.form-label-dark {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
  display: block;
}

/* ── PORTFOLIO GRID ── */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}

.portfolio-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
}

.portfolio-thumb {
  height: 200px;
  background: linear-gradient(135deg, #1a2a4a, #0f1d35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,15,28,0.8) 100%);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(59,130,246,0.12);
  color: var(--blue);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.portfolio-info p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.2s;
}

.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, #1a2a4a 0%, var(--bg-card) 100%);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.87rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li .check {
  color: var(--blue);
  flex-shrink: 0;
}

/* ── ABOUT ── */
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .hero-trust {
    gap: 1rem;
  }

  .client-logos {
    gap: 1rem;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }
}


