/*
Theme Name: Ultra Studio
Description: Custom theme for Ultra Studio
Version: 2.0
Author: Ultra Studio
*/

:root {
  --bg: #121212;
  --bg-card: #1F1F1F;
  --bg-alt: #333333;
  --text: #E8F0FF;
  --green: #35CE8D;
  --green-dim: rgba(53, 206, 141, 0.15);
  --green-border: rgba(53, 206, 141, 0.25);
  --card-border: rgba(255,255,255,0.05);
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-hover: 0 8px 48px rgba(53,206,141,0.18);
  --max-width: 1140px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.site-logo img { height: 38px; width: auto; display: block; }

.site-nav { display: flex; gap: 4px; align-items: center; position: relative; }

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
  padding: 8px 14px;
  border-radius: 8px;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.site-nav a:hover { opacity: 1; background: rgba(255,255,255,0.06); }
.site-nav a.active { opacity: 1; color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: #0a0a0a !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 2px 16px rgba(53,206,141,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: #2ebd7e !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 24px rgba(53,206,141,0.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  padding: 110px 80px 80px;
  background: #080808;
  overflow: hidden;
}

/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 20%, transparent 80%);
}

/* Left edge fade so grid doesn't clash with content */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080808 0%, transparent 40%, transparent 60%, #080808 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(53,206,141,0.1);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero h1 span { color: var(--green); }

.hero p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  opacity: 0.65;
  max-width: 460px;
  margin: 0 0 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Globe */
.hero-globe {
  position: relative;
  z-index: 2;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-globe-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(53,206,141,0.13) 0%, rgba(53,206,141,0.04) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: globe-pulse 4s ease-in-out infinite;
}
@keyframes globe-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.7; }
}
model-viewer {
  width: 660px;
  height: 660px;
  max-width: 100%;
  filter: brightness(0.88) saturate(0.9) drop-shadow(0 0 60px rgba(53,206,141,0.18)) drop-shadow(0 0 120px rgba(30,100,200,0.12));
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2.5s ease-in-out infinite;
  color: var(--text);
  opacity: 0.25;
}
.scroll-down svg { width: 24px; height: 24px; fill: currentColor; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ================================================
   LAYOUT
   ================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
section { padding: 110px 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  opacity: 0.6;
  max-width: 500px;
  margin-bottom: 64px;
  line-height: 1.7;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(53,206,141,0.3);
}
.btn:hover {
  background: #2ebd7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(53,206,141,0.4);
}
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--green-border);
  background: var(--green-dim);
  transform: translateY(-2px);
}
.btn-ghost svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  padding: 160px 48px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-border), transparent);
}
.page-hero h1 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.page-hero h1 span { color: var(--green); }

/* ================================================
   HOMEPAGE — SERVICES BENTO
   ================================================ */
.hp-services { padding: 110px 0; }

.hp-services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.hp-services-head-left h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-top: 12px;
}
.hp-services-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hp-services-head-right p {
  font-size: 16px;
  opacity: 0.6;
  line-height: 1.75;
}

/* Bento grid */
.hp-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

/* Default small card = 2 columns */
.hp-bento-card {
  grid-column: span 2;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.hp-bento-card:hover {
  border-color: var(--green-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: #212121;
}
/* Top-right glow on hover */
.hp-bento-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(53,206,141,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.hp-bento-card:hover::after { opacity: 1; }

/* Wide cards span 3 columns (top row) */
.hp-bento-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 44px 40px;
}
.hp-bento-wide--alt {
  background: #1a1a1a;
}

/* Icon */
.hp-bento-icon {
  width: 72px; height: 72px;
  min-width: 72px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.hp-bento-card:hover .hp-bento-icon { background: rgba(53,206,141,0.2); }
.hp-bento-icon svg { width: 30px; height: 30px; fill: var(--green); }

.hp-bento-icon--sm {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
}
.hp-bento-icon--sm svg { width: 22px; height: 22px; }

/* Body text inside wide cards */
.hp-bento-body { flex: 1; }
.hp-bento-body h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.hp-bento-body p {
  font-size: 14px;
  opacity: 0.55;
  line-height: 1.75;
}

/* Small card title/desc */
.hp-bento-card > h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 4px;
}
.hp-bento-card > p {
  font-size: 13px;
  opacity: 0.55;
  line-height: 1.7;
  flex: 1;
}

/* Arrow on wide cards */
.hp-bento-arrow {
  width: 38px; height: 38px;
  min-width: 38px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.hp-bento-card:hover .hp-bento-arrow {
  background: var(--green);
  transform: translateX(2px);
}
.hp-bento-arrow svg { width: 14px; height: 14px; fill: var(--green); }
.hp-bento-card:hover .hp-bento-arrow svg { fill: #0a0a0a; }

/* Link on small cards */
.hp-bento-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
  margin-top: auto;
}
.hp-bento-card:hover .hp-bento-link { opacity: 1; transform: translateY(0); }
.hp-bento-link svg { width: 12px; height: 12px; fill: var(--green); }

/* Background number watermark */
.hp-bento-num {
  position: absolute;
  bottom: 20px; right: 24px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-variant-numeric: tabular-nums;
}
.hp-bento-wide .hp-bento-num {
  font-size: 120px;
  bottom: -10px; right: 20px;
}

/* ================================================
   HOMEPAGE — STATS STRIP
   ================================================ */
.hp-stats-strip {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0;
}
.hp-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hp-stat {
  text-align: center;
  flex: 1;
}
.hp-stat strong {
  display: block;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  color: var(--green);
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.hp-stat strong span {
  font-size: 38px;
  letter-spacing: -1px;
}
.hp-stat em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hp-stat-sep {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ================================================
   HOMEPAGE — WHY US
   ================================================ */
.hp-why {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 110px 0;
}
.hp-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.hp-why-lead .section-label { margin-bottom: 20px; }
.hp-why-lead h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hp-why-lead p {
  font-size: 16px;
  opacity: 0.6;
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 440px;
}

.hp-why-features { display: flex; flex-direction: column; }
.hp-why-item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hp-why-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.hp-why-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-why-icon svg { width: 18px; height: 18px; fill: var(--green); }
.hp-why-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.hp-why-text p {
  font-size: 13px;
  opacity: 0.5;
  line-height: 1.7;
}

/* ================================================
   HOMEPAGE — PROCESS
   ================================================ */
.hp-process { padding: 110px 0; }
.hp-process-head {
  text-align: center;
  margin-bottom: 80px;
}
.hp-process-head .section-title { margin-top: 12px; }
.hp-process-head .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

.hp-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line */
.hp-process-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(25% / 2 + 26px);
  right: calc(25% / 2 + 26px);
  height: 1px;
  background: linear-gradient(90deg, var(--green-border) 0%, rgba(53,206,141,0.08) 100%);
  pointer-events: none;
}

.hp-step {
  padding: 0 28px;
}
.hp-step:first-child { padding-left: 0; }
.hp-step:last-child { padding-right: 0; }

.hp-step-num {
  width: 52px; height: 52px;
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.hp-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.hp-step p {
  font-size: 13px;
  opacity: 0.5;
  line-height: 1.8;
}

/* ================================================
   HOMEPAGE — CTA + COUNTDOWN
   ================================================ */
.hp-cta-section { padding: 0 0 110px; }
.hp-cta-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hp-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.hp-cta-bg-glow {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(53,206,141,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hp-cta-left .section-label { margin-bottom: 14px; }
.hp-cta-left h2 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.hp-cta-left p {
  font-size: 17px;
  opacity: 0.55;
  margin-bottom: 40px;
  max-width: 420px;
  line-height: 1.7;
}
.hp-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Countdown (shared) */
.countdown-label-top {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.35;
}
.countdown-boxes {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cd-box {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 18px 20px 14px;
  text-align: center;
  min-width: 80px;
  border: 1px solid var(--green-border);
}
.cd-box .cd-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cd-box .cd-unit {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.35;
  margin-top: 8px;
}
.cd-sep {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.4;
  padding-top: 14px;
  line-height: 1;
}

/* ================================================
   HOMEPAGE — CLIENTS
   ================================================ */
/* ================================================
   CLIENTS — MARQUEE STRIP
   ================================================ */
.hp-clients {
  padding: 100px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e0e 100%);
  overflow: hidden;
}
.hp-clients-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.hp-clients-header .section-label { margin-bottom: 16px; }
.hp-clients-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hp-clients-header p {
  font-size: 16px;
  opacity: 0.55;
  line-height: 1.8;
}

/* Logo grid — magnetic hover */
.hp-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 56px;
}
.hp-logo-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 0 40px;
  text-decoration: none;
  transition: transform 0.25s ease-out, border-color 0.3s, background 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.hp-logo-card:hover {
  border-color: var(--green-border);
  background: #242424;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.hp-logo-card img {
  max-height: 48px;
  max-width: 200px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease-out, opacity 0.3s;
  will-change: transform;
}
.hp-logo-card:hover img { opacity: 1; }

.hp-clients-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.hp-clients-cta span {
  font-size: 15px;
  opacity: 0.5;
}

/* ================================================
   TJENESTER PAGE
   ================================================ */
.tjenester-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 80px;
}
.tjenester-intro-text h2 { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.tjenester-intro-text p { font-size: 16px; opacity: 0.65; line-height: 1.85; }
.tjenester-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box span { font-size: 13px; opacity: 0.55; font-weight: 500; }

.tjenester-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tjeneste-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tjeneste-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-border);
}
.tjeneste-card-img-wrap {
  position: relative;
  height: 260px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.tjeneste-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tjeneste-card:hover .tjeneste-card-img-wrap img { transform: scale(1.05); }
.tjeneste-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18,18,18,0.6) 100%);
}
.tjeneste-icon-badge {
  position: absolute;
  bottom: -22px;
  left: 32px;
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(53,206,141,0.45);
  transition: transform 0.3s;
}
.tjeneste-card:hover .tjeneste-icon-badge { transform: scale(1.08); }
.tjeneste-icon-badge svg { width: 22px; height: 22px; fill: #0a0a0a; }
.tjeneste-card-body {
  padding: 44px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tjeneste-card-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.tjeneste-card-body p {
  opacity: 0.62;
  line-height: 1.8;
  font-size: 14px;
  flex: 1;
  margin-bottom: 28px;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-hero-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  margin-bottom: 48px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-hero-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.about-hero-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-box p {
  font-size: 16px;
  opacity: 0.7;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: var(--green-border); transform: translateY(-4px); }
.team-initial {
  width: 72px; height: 72px;
  background: var(--green-dim);
  border: 2px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 24px;
}
.team-card h3 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 20px; }
.team-card a {
  color: var(--text);
  text-decoration: none;
  display: block;
  margin: 10px 0;
  font-size: 15px;
  opacity: 0.6;
  transition: color 0.25s, opacity 0.25s;
}
.team-card a:hover { color: var(--green); opacity: 1; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.contact-card h2 { font-size: 32px; font-weight: 800; margin-bottom: 48px; }
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  font-size: 18px;
}
.contact-item svg { width: 22px; height: 22px; fill: var(--green); flex-shrink: 0; }
.contact-item a { color: var(--text); text-decoration: none; transition: color 0.25s; }
.contact-item a:hover { color: var(--green); }

/* ================================================
   SHOP / PRODUCTS PAGE
   ================================================ */
.shop-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.shop-section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.shop-section-sub {
  font-size: 16px;
  opacity: 0.6;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* Featured product */
.product-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  margin-bottom: 96px;
}
.product-featured-img {
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 440px;
}
.product-featured-img img { max-width: 100%; max-height: 380px; object-fit: contain; display: block; }
.product-featured-info {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
}
.product-featured-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.product-featured-info p {
  font-size: 15px;
  opacity: 0.65;
  line-height: 1.8;
  margin-bottom: 32px;
}
.product-features { list-style: none; margin-bottom: 36px; }
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.75;
  padding: 6px 0;
}
.product-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.product-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 28px;
}
.product-price span { font-size: 16px; opacity: 0.5; font-weight: 400; color: var(--text); }

/* Tier cards */
.tiers-header { text-align: center; margin-bottom: 48px; }
.tiers-header h2 { font-size: 40px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.tiers-header p { opacity: 0.6; font-size: 16px; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}
.tier-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-border);
}
.tier-card.featured {
  border-color: var(--green-border);
  position: relative;
}
.tier-popular-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}
.tier-img {
  background: #0d0d0d;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.tier-img img { max-height: 160px; max-width: 100%; object-fit: contain; }
.tier-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.tier-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.tier-price { font-size: 32px; font-weight: 800; color: var(--green); margin-bottom: 20px; }
.tier-price span { font-size: 14px; opacity: 0.5; font-weight: 400; color: var(--text); }
.tier-desc { font-size: 13px; opacity: 0.6; line-height: 1.7; margin-bottom: 24px; flex: 1; }
.tier-body .btn { width: 100%; justify-content: center; font-size: 14px; padding: 13px 20px; }

/* Shop CTA */
.shop-cta {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.shop-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.shop-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.shop-cta p { opacity: 0.6; margin-bottom: 36px; font-size: 16px; }

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 64px;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
}
.legal-content h2 { font-size: 30px; font-weight: 800; margin-bottom: 40px; }
.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}
.legal-content p { margin-bottom: 14px; opacity: 0.75; line-height: 1.85; font-size: 15px; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-border), transparent);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* Top section */
.footer-top { padding: 80px 0 64px; }
.footer-top .footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* Brand */
.footer-brand { }
.footer-logo img { height: 38px; width: auto; display: block; margin-bottom: 20px; }
.footer-tagline {
  font-size: 14px;
  opacity: 0.5;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 260px;
}

/* Socials */
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-socials a:hover {
  background: var(--green-dim);
  border-color: var(--green-border);
  transform: translateY(-2px);
}
.footer-socials svg { width: 15px; height: 15px; fill: var(--text); opacity: 0.6; transition: opacity 0.2s, fill 0.2s; }
.footer-socials a:hover svg { fill: var(--green); opacity: 1; }

/* Nav cols */
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--green); }

/* Contact col */
.footer-contact-list { gap: 12px !important; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-list svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; opacity: 0.7; }
.footer-contact-list a,
.footer-contact-list span {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}
.footer-contact-list a:hover { opacity: 1; color: var(--green); }
.footer-cta {
  margin-top: 28px;
  font-size: 13px !important;
  padding: 12px 24px !important;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}
.footer-bottom .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; opacity: 0.3; }
.footer-bottom-links { display: flex; gap: 4px; }
.footer-bottom-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.3;
  padding: 4px 10px;
  border-radius: 6px;
  transition: opacity 0.2s, background 0.2s;
}
.footer-bottom-links a:hover { opacity: 0.7; background: rgba(255,255,255,0.04); }

/* ================================================
   PAYMENT SECTION (footer + produkter page)
   ================================================ */

/* Shared badge styles */
.pay-badge {
  background: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: opacity 0.2s, transform 0.2s;
}
.pay-badge:hover { opacity: 0.9; transform: translateY(-1px); }
.pay-badge img { display: block; }
.pay-badge--klarna { gap: 7px; }
.pay-badge--klarna span {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.3px;
}
.pay-badge--vipps { padding: 0; overflow: hidden; background: transparent; }
.pay-badge--vipps img { height: 38px; width: auto; border-radius: 8px; }

/* Footer payment row */
.footer-payment {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-payment-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-payment-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(232,240,255,0.4);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.footer-payment-label svg { fill: rgba(232,240,255,0.3); flex-shrink: 0; }
.footer-payment-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-payment-note {
  margin-left: auto;
  font-size: 11px;
  color: rgba(232,240,255,0.25);
  letter-spacing: 0.5px;
}

/* Produkter payment strip */
.payment-strip {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-bottom: 64px;
}
.payment-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.payment-strip-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
}
.payment-strip-left svg { fill: var(--green); opacity: 0.7; flex-shrink: 0; }
.payment-strip-left strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.payment-strip-left span {
  font-size: 12px;
  opacity: 0.45;
}
.payment-strip-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-strip-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(232,240,255,0.35);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.payment-strip-right svg { fill: var(--green); opacity: 0.5; }

/* ================================================
   NAV DROPDOWN
   ================================================ */
.nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
/* Invisible bridge that fills the gap so hover isn't lost */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 18px;
}
.nav-has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-chevron {
  width: 10px;
  height: 10px;
  fill: currentColor;
  opacity: 0.5;
  transition: transform .25s, opacity .2s;
  flex-shrink: 0;
}
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 230px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(53,206,141,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 1001;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.08);
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text) !important;
  text-decoration: none;
  opacity: 0.7 !important;
  transition: opacity .15s, background .15s, color .15s !important;
  background: transparent !important;
  transform: none !important;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  opacity: 1 !important;
  background: rgba(53,206,141,0.1) !important;
  color: var(--green) !important;
}
.nav-dropdown a svg {
  width: 15px;
  height: 15px;
  fill: var(--green);
  flex-shrink: 0;
  opacity: 0.7;
}
.nav-dropdown a:hover svg { opacity: 1; }

/* ================================================
   NAV INDICATOR (follow-mouse underline)
   ================================================ */
.site-nav { position: relative; }
.nav-indicator {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: left .22s cubic-bezier(.4,0,.2,1), width .22s cubic-bezier(.4,0,.2,1), opacity .18s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(53,206,141,0.6);
}

/* ================================================
   SERVICE SUBPAGES
   ================================================ */
.service-overview { padding: 80px 0 0; }
.service-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-overview-text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.service-overview-text p {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.85;
  margin-bottom: 32px;
}
.service-overview-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
  height: 380px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.feature-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--card-border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-item:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-item-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-item-icon svg { width: 20px; height: 20px; fill: var(--green); }
.feature-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.75;
}

.process-header { text-align: center; margin-bottom: 48px; }
.process-header h2 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.process-header p { opacity: 0.6; font-size: 16px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-step {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--card-border);
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 20px;
  opacity: 0.4;
  z-index: 1;
}
.step-number {
  width: 52px; height: 52px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 20px;
}
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; opacity: 0.6; line-height: 1.75; }

.service-page-cta {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.service-page-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.service-page-cta h2 { font-size: 38px; font-weight: 800; margin-bottom: 12px; }
.service-page-cta p {
  opacity: 0.6;
  margin-bottom: 36px;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.service-page-cta .btn { margin: 0 auto; }

.tjeneste-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.25s ease;
  margin-top: auto;
}
.tjeneste-card-link svg { width: 14px; height: 14px; fill: var(--green); transition: transform 0.25s; }
.tjeneste-card:hover .tjeneste-card-link { gap: 14px; }
.tjeneste-card:hover .tjeneste-card-link svg { transform: translateX(2px); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .footer-top .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-overview-inner { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 58px; }
  .section-title { font-size: 40px; }
  .cta-left h2 { font-size: 38px; }
  .clients-section h2 { font-size: 40px; }
  .hp-clients-header h2 { font-size: 40px; }
  .tiers-grid { grid-template-columns: repeat(3, 1fr); }
  .product-featured { grid-template-columns: 1fr; }
  .product-featured-img { min-height: 300px; }
}

@media (max-width: 767px) {
  .site-header { padding: 0 20px; height: 62px; }
  .site-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 16px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; font-size: 16px; border-radius: 10px; }
  .nav-indicator { display: none; }
  .hamburger { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: 44px; letter-spacing: -1.5px; }
  .hero p { font-size: 15px; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-globe { height: 320px; }
  model-viewer { width: 340px; height: 340px; }
  .hero-globe-glow { width: 260px; height: 260px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .services-intro-inner { flex-direction: column; padding: 32px 24px; gap: 32px; }
  .services-intro-img { max-width: 100%; }
  .cta-wrap { padding: 0 20px 80px; }
  .cta-box { flex-direction: column; padding: 40px 28px; gap: 40px; }
  .cta-left h2 { font-size: 30px; }
  .countdown-boxes { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .cd-box { min-width: 68px; padding: 14px 16px 10px; }
  .cd-box .cd-num { font-size: 30px; }
  .cd-sep { font-size: 24px; }
  .clients-section { padding: 80px 24px; }
  .clients-section h2 { font-size: 28px; }
  .hp-clients { padding: 72px 0 64px; }
  .hp-clients-header { margin-bottom: 40px; }
  .hp-clients-header h2 { font-size: 30px; letter-spacing: -0.5px; }
  .hp-clients-header p { font-size: 15px; }
  .hp-logo-grid { grid-template-columns: 1fr; gap: 14px; max-width: 360px; margin-bottom: 40px; }
  .hp-logo-card { height: 100px; padding: 0 32px; }
  .hp-logo-card img { max-height: 36px; max-width: 150px; }
  .hp-clients-cta { flex-direction: column; text-align: center; gap: 14px; }
  .team-grid { grid-template-columns: 1fr; }
  .tjenester-grid { grid-template-columns: 1fr; }
  .tjenester-intro { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; margin-bottom: 48px; }
  .tjenester-intro-text h2 { font-size: 30px; }
  .tjeneste-card-img-wrap { height: 200px; }
  .tjeneste-card-body { padding: 40px 24px 28px; }
  .about-hero-box { padding: 40px 28px; }
  .about-hero-box h2 { font-size: 24px; }
  .contact-card { padding: 40px 24px; }
  .legal-content { padding: 32px 24px; }
  .page-hero { padding: 120px 24px 56px; }
  .page-hero h1 { font-size: 36px; }
  .section-title { font-size: 30px; }
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .btn { font-size: 14px; padding: 14px 26px; }
  .tiers-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-featured { grid-template-columns: 1fr; }
  .product-featured-img { min-height: 240px; padding: 32px; }
  .product-featured-info { padding: 36px 28px; }
  .product-featured-info h2 { font-size: 24px; }
  .product-price { font-size: 28px; }
  .shop-cta { padding: 40px 28px; }
  .shop-cta h2 { font-size: 26px; }
  .footer-top .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom .footer-container { flex-direction: column; text-align: center; }
  .service-overview-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-overview-img img { height: 260px; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .service-page-cta { padding: 48px 28px; }
  .service-page-cta h2 { font-size: 26px; }
}
