/* ===== CSS Variables - Modern Dark Theme ===== */
:root {
  --bg: #121218;
  --bg-elevated: #1a1a22;
  --bg-card: #22222c;
  --bg-dark: #0e0e14;
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --text-secondary: #c8c8d0;
  --text-muted: #9898a4;
  --accent: #ef4444;
  --accent-hover: #dc2626;
  --accent-light: rgba(239, 68, 68, 0.12);
  --accent-secondary: #fbbf24;
  --success: #10b981;
  --radius: 12px;
  --radius-lg: 20px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: gentleFadeIn 0.6s var(--ease-out) both;
}

/* Gradient background - subtil og profesjonell */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 100% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(239, 68, 68, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: gentleFadeIn 1.5s var(--ease-out) both;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes softFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes gentleFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out),
    filter 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===== Layout ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background-color: var(--bg-dark);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-header h2 {
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: white;
  box-shadow: 0 4px 24px rgba(239, 68, 68, 0.25), 0 0 0 0 rgba(239, 68, 68, 0);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.35), 0 0 0 4px rgba(239, 68, 68, 0.1);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 16px rgba(239, 68, 68, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-demo {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: white;
  border: none;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(239, 68, 68, 0.3);
}

.btn-demo:hover {
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.45);
  transform: translateY(-3px) scale(1.02);
}

.btn-demo i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-demo:hover i {
  transform: translateX(4px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ===== Header / Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

/* Header intro animation - lightning strike with reveal */
.header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(239, 68, 68, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  animation: headerLightning 0.4s cubic-bezier(0.7, 0, 0.3, 1) 0.9s forwards;
}

@keyframes headerLightning {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  60% {
    transform: scaleX(1.02);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.header .nav {
  clip-path: inset(0 100% 0 0);
  animation: headerReveal 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0.9s forwards;
}

@keyframes headerReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.header.scrolled {
  background: rgba(9, 9, 11, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text-styled {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-e {
  color: var(--text);
}

.logo-fff {
  color: var(--text);
}

.logo-rest {
  color: var(--text);
}

.logo-stripe {
  position: absolute;
  left: 0.6em;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1em;
  height: 0.2em;
  background: var(--accent);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--accent-light);
  border-radius: 100px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  animation: softFadeIn 1s var(--ease-out) 0.2s both;
}

.hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  margin-bottom: 28px;
  animation: softFadeIn 1s var(--ease-out) 0.4s both;
}

.text-accent {
  background: linear-gradient(
    90deg,
    #ef4444 0%,
    #f97316 25%,
    #fbbf24 50%,
    #f97316 75%,
    #ef4444 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease-in-out infinite;
  position: relative;
}

@keyframes gradientFlow {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: softFadeIn 1s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
  animation: softFadeIn 1s var(--ease-out) 0.8s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  animation: softFadeIn 1s var(--ease-out) 1s both;
}

.stat {
  text-align: left;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* ===== Services ===== */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.4s var(--ease-out);
}

.service:hover {
  border-color: var(--border-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255,255,255,0.06);
}

.service:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.service-featured {
  border-color: transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, var(--accent), var(--accent-secondary)) border-box;
}

.service-featured:hover {
  box-shadow: 0 24px 48px rgba(239, 68, 68, 0.15), 0 0 0 1px rgba(239, 68, 68, 0.2);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.service-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
}

.service-info h3 {
  margin-bottom: 4px;
}

.service-price {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-price-alt {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 2px;
}

.service-desc {
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.service-cta {
  margin-top: 20px;
}

/* ===== Inline CTA ===== */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.inline-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.inline-cta-content h3 {
  margin-bottom: 8px;
  font-size: 1.375rem;
}

.inline-cta-content p {
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .inline-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

/* ===== Case Study ===== */
.case {
  max-width: 800px;
  margin: 0 auto;
}

.case-intro {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.case-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.case-result {
  text-align: center;
  padding: 28px 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}

.case-result:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.result-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    #ef4444 0%,
    #f97316 25%,
    #fbbf24 50%,
    #f97316 75%,
    #ef4444 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease-in-out infinite;
  margin-bottom: 6px;
}

.result-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.case-solution {
  margin-bottom: 48px;
}

.case-solution h3 {
  margin-bottom: 16px;
}

.case-solution ul {
  list-style: none;
}

.case-solution li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.case-solution li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.case-demo {
  text-align: center;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
              linear-gradient(135deg, var(--accent), var(--accent-secondary)) border-box;
  box-shadow: 0 0 60px rgba(239, 68, 68, 0.12);
  transition: all 0.4s var(--ease-out);
}

.case-demo:hover {
  box-shadow: 0 0 80px rgba(239, 68, 68, 0.18);
  transform: translateY(-4px);
}

.demo-credentials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 24px;
}

.demo-credentials code {
  background: var(--bg);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9375rem;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.demo-credentials code:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

/* ===== Process ===== */
.process {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.process-step:hover {
  padding-left: 16px;
}

.process-step:hover .step-number {
  opacity: 1;
  animation: gradientFlow 6s ease-in-out infinite;
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    #ef4444 0%,
    #f97316 25%,
    #fbbf24 50%,
    #f97316 75%,
    #ef4444 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  flex-shrink: 0;
  width: 80px;
  transition: opacity 0.3s ease;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.step-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Team ===== */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.team-member:hover {
  border-color: var(--border-light);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.team-member:hover .member-photo img,
.team-member:hover .member-placeholder {
  transform: scale(1.05);
  border-color: var(--accent);
}

.member-photo {
  flex-shrink: 0;
  margin-bottom: 24px;
}

.member-photo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
}

.member-placeholder {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 4px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
}

.member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-info h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.member-title {
  display: block;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.member-info p {
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

.member-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  width: 100%;
}

.member-contact:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-light);
}

.member-contact i {
  font-size: 0.875rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-text {
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.2s;
}

.contact-method:hover {
  color: var(--accent);
}

.contact-method i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius);
  color: var(--accent);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--border-light);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9375rem;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services {
    grid-template-columns: 1fr;
  }

  .case-results {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .process-step {
    flex-direction: column;
    gap: 16px;
  }

  .step-number {
    width: auto;
  }

  .team {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
  }

  .team-member {
    padding: 40px 28px 36px;
  }

  .member-photo img,
  .member-placeholder {
    width: 120px;
    height: 120px;
  }

  .case-results {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .case-results {
    grid-template-columns: 1fr;
  }

  .demo-credentials {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== Promo Popup ===== */

.promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  display: none;
}

.promo-overlay.active {
  display: block;
}

.promo-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 480px;
  width: 90%;
  background: #141419;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  z-index: 100000;
  display: none;
}

.promo-popup.active {
  display: block;
}

.promo-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.promo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.promo-close:hover {
  background: var(--bg);
  border-color: var(--border-light);
  color: var(--text);
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.promo-popup h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.promo-popup p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.promo-highlight {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.promo-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-cta .btn {
  width: 100%;
}

.promo-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
}

.promo-dismiss:hover {
  color: var(--text-secondary);
}

@media (max-width: 480px) {
  .promo-popup {
    padding: 40px 24px;
  }

  .promo-popup h3 {
    font-size: 1.5rem;
  }
}

/* ===== Service Pages ===== */

/* Gradient text */
.gradient-text {
  background: linear-gradient(
    90deg,
    #ef4444 0%,
    #f97316 25%,
    #fbbf24 50%,
    #f97316 75%,
    #ef4444 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease-in-out infinite;
}

/* Section badge */
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Specialist Badge with Avatar */
.specialist-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.specialist-badge .section-badge {
  margin-bottom: 0;
}

.specialist-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.specialist-avatars {
  display: flex;
}

.specialist-avatars .specialist-avatar {
  margin-right: -12px;
}

.specialist-avatars .specialist-avatar:last-child {
  margin-right: 0;
}

/* Service Hero */
.service-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.service-hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.service-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Price boxes */
.service-hero-prices {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.price-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.price-box:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.price-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.price-alt {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Service Details / Included Grid */
.service-details {
  padding: 100px 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.included-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.included-item:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.included-item:hover .included-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
}

.included-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all 0.3s var(--ease-out);
}

.included-item h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.included-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Extra section (nettbutikk extras) */
.extra-section {
  margin-top: 64px;
  padding: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.extra-section h3 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.25rem;
}

.extra-section h3 i {
  color: var(--accent);
  margin-right: 10px;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.extra-item i {
  color: var(--success);
  font-size: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question i {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Contact Section (service pages) */
.contact-section {
  padding: 100px 0;
}

.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 16px;
}

.contact-section .contact-text p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.trust-item i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.875rem;
}

/* Contact People */
.contact-people {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-people h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.contact-person:last-child {
  border-bottom: none;
}

.contact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-light);
}

.contact-person-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-person-info strong {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
}

.contact-specialty {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s ease;
}

.contact-phone:hover {
  color: var(--accent-hover);
}

.contact-phone i {
  font-size: 0.75rem;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrapper .contact-form {
  background: none;
  border: none;
  padding: 0;
}

/* Button variants */
.btn-large {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

/* Other Services */
.other-services {
  padding: 100px 0;
  background: var(--bg-dark);
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.other-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}

.other-service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.other-service-card i {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}

.other-service-card:hover i {
  transform: scale(1.1);
}

.other-service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.other-price {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Service page responsive */
@media (max-width: 900px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .service-hero-prices {
    flex-direction: column;
    align-items: center;
  }

  .price-box {
    width: 100%;
    max-width: 280px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 120px 0 60px;
  }

  .price-box {
    padding: 20px 32px;
  }

  .included-item {
    padding: 24px;
  }

  .extra-section {
    padding: 32px 24px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }
}
