/* ===== FONTS ===== */
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/PPNeueMontreal-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/PPNeueMontreal-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/PPNeueMontreal-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #2d2d2d;
  --accent: #135029;
  --accent-dark: #0d3a1d;
  --white: #ffffff;
  --light: #f7f7f7;
  --gray: #888888;
  --text: #111111;
  --text-light: #555555;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --font: 'Neue Montreal', 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Neue Montreal', 'Inter', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; line-height: 1.15; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-light); line-height: 1.75; font-family: var(--font); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0d0d0d;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  border-bottom: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}

.nav-logo-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dark);
}

.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: var(--white) !important;
  color: var(--dark) !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 16px rgba(0,0,0,0.3) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: #f0f0f0 !important;
  transform: translateY(-1px) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== PAGES ===== */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #111111 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.72) 60%, rgba(13,26,62,0.78) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(19,80,41,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(19,80,41,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-text {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(19,80,41,0.15);
  border: 1px solid rgba(19,80,41,0.3);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.hero p {
  color: #888888;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary,
.btn-secondary,
.btn-dark,
.btn-outline {
  border-radius: 9999px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  text-decoration: none;
}

/* Anchor CTAs: auto-width pill */
a.btn-primary, a.btn-secondary, a.btn-dark, a.btn-outline {
  width: auto;
  align-self: flex-start;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border: none;
}

.btn-primary:hover {
  background: #1b6b38;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(19,80,41,0.38);
}

.btn-secondary {
  background: rgba(18,18,18,0.85);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-secondary:hover {
  background: rgba(38,38,38,0.95);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* Hero buttons — slightly larger */
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  padding: 1.05rem 2.4rem;
  font-size: 1.02rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: left;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}

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

.stat-label {
  font-size: 0.82rem;
  color: #888888;
  margin-top: 0.4rem;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.hero-tag {
  background: rgba(19,80,41,0.1);
  border: 1px solid rgba(19,80,41,0.2);
  color: var(--accent);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== PARTNERS ===== */
.partners {
  background: var(--light);
  padding: 3rem 2rem;
  text-align: left;
}

.partners p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

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

.partner-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #888888;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.partner-logo:hover { opacity: 1; color: var(--text); }

/* ===== SECTIONS ===== */
section {
  padding: 90px 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  background: rgba(19,80,41,0.1);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin: .75rem 0 1rem;
}

.section-header p {
  max-width: 600px;
  font-size: 1.05rem;
  margin: 0;
}

/* ===== PROJECT CARDS (Hva vi leverer) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s;
}

.service-card:hover .service-card-img::after {
  opacity: 0.5;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

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

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  transition: color 0.3s;
}

.service-card:hover .service-card-body h3 {
  color: var(--accent);
}

.service-card-body p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.3s;
  margin-top: auto;
}

.service-card:hover .service-card-link {
  gap: 0.7rem;
  text-decoration: underline;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--dark);
  color: var(--white);
}

.process-section .section-header h2,
.process-section .section-header p {
  color: var(--white);
}

.process-section .section-header p {
  color: #888888;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step-arrow-wrap {
  position: absolute;
  top: 30px;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.step-arrow-svg {
  width: 56px;
  height: 24px;
  overflow: visible;
  filter:
    drop-shadow(0 0 4px rgba(19,80,41,0.9))
    drop-shadow(0 0 12px rgba(19,80,41,0.6));
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 3px rgba(19,80,41,0.7))
      drop-shadow(0 0 8px rgba(19,80,41,0.4));
    opacity: .8;
  }
  50% {
    filter:
      drop-shadow(0 0 8px rgba(19,80,41,1))
      drop-shadow(0 0 18px rgba(19,80,41,0.8))
      drop-shadow(0 0 30px rgba(19,80,41,0.4));
    opacity: 1;
  }
}

.step {
  position: relative;
  z-index: 1;
  text-align: left;
}

.step-number {
  width: 60px;
  height: 60px;
  background: rgba(19,80,41,0.75);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 6px 24px rgba(19,80,41,0.45),
    0 2px 8px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.step-number::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18), transparent);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.step h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.step p {
  color: #888888;
  font-size: 0.88rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(19,80,41,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-item h4 { margin-bottom: 0.3rem; }
.why-item p { font-size: 0.9rem; }

.why-visual {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: var(--white);
  text-align: left;
}

.why-visual h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.rating-big {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stars {
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.why-visual p { color: #888888; font-size: 0.9rem; }

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  padding: 160px 2rem 100px;
  color: var(--white);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.68) 100%);
  z-index: 0;
}

.page-header h1,
.page-header p,
.page-header .ph-cta { position: relative; z-index: 1; }

.page-header h1 { color: var(--white); margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0; }

.ph-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===== PRICE CARDS ===== */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}

.pc-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.pc-card-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(19,80,41,0.15);
}

.pc-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.pc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-body h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
  color: var(--dark);
}

.pc-body > p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.pc-price {
  margin-bottom: 1.25rem;
  margin-top: auto;
}

.pc-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.pc-unit {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .2rem;
  display: block;
}

.pc-features {
  list-style: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.pc-features li {
  font-size: .85rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

.pc-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* Price card buttons — solid style for white card context */
.pc-card .btn-primary {
  background: var(--dark);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  width: auto;
  align-self: flex-start;
  padding: 0.85rem 2rem;
}
.pc-card .btn-primary:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.pc-card-featured .btn-primary {
  background: var(--accent);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(19,80,41,0.3);
}
.pc-card-featured .btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(19,80,41,0.4);
}

@media (max-width: 1024px) {
  .pc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pc-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pc-img { height: 160px; }
}

/* ===== PRISER ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s;
  position: relative;
  background: var(--white);
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 8px 48px rgba(19,80,41,0.15);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.pricing-card .desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

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

.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0.5rem 0 1.5rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

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

.check { color: #22c55e; font-weight: 700; }

.btn-outline {
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
  font-size: 0.95rem;
  background: rgba(19,80,41,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  width: 100%;
  text-align: center;
  justify-content: center;
}

.btn-outline:hover,
.pricing-card.popular .btn-outline {
  background: var(--accent);
  color: var(--dark);
}

/* ===== OM OSS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hamid-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  min-height: 420px;
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(19,80,41,0.2) 0%, transparent 70%);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
}

.about-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

.about-stat .lbl {
  font-size: 0.82rem;
  color: #888888;
  margin-top: 0.3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: linear-gradient(135deg, rgba(19,80,41,0.08) 0%, rgba(19,80,41,0.03) 100%);
  border: 1px solid rgba(19,80,41,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  box-shadow: 0 4px 24px rgba(19,80,41,0.1), 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow .3s, transform .3s;
}

.value-card:hover {
  box-shadow: 0 8px 40px rgba(19,80,41,0.18), 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.value-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.6rem; }
.value-card p { font-size: 0.9rem; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent);
}

.team-card h3 { margin-bottom: 0.3rem; }
.team-card .role { color: var(--accent-dark); font-size: 0.88rem; font-weight: 600; }
.team-card p { font-size: 0.88rem; margin-top: 0.6rem; }

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(19,80,41,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 { margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-item p { font-size: 0.9rem; }

.opening-hours {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}

.opening-hours h4 { margin-bottom: 1rem; font-size: 1rem; }

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hour-row:last-child { border-bottom: none; }
.hour-row span:first-child { color: var(--text-light); }
.hour-row span:last-child { font-weight: 600; }

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 { margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--white);
}

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

.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

/* Contact form submit — pill shape, centred */
button.btn-full {
  width: auto;
  min-width: 220px;
  display: flex;
  margin: 0 auto;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #22c55e;
}

/* ===== MAP ===== */
.map-wrap {
  position: relative;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.map-open-btn {
  display: block;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: .9rem 1rem;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}

.map-open-btn:hover { background: var(--accent-dark); }

/* Footer map card */
.footer-map-card {
  display: block;
  margin-top: 1.25rem;
}

.footer-map-card iframe {
  border-radius: 12px;
  overflow: hidden;
}

.footer-map-link {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.footer-map-link:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-map-card { display: none; }
}

@media (max-width: 640px) {
  .map-iframe { height: 260px; }
  .map-wrap { margin-top: 1.5rem; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 0;
}

.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 0; max-width: 600px; }

.cta-banner .btn-dark {
  background: var(--accent);
  color: var(--white);
  border: none;
}
.cta-banner .btn-dark:hover {
  background: #1b6b38;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(19,80,41,0.38);
}

.btn-dark {
  background: rgba(18,18,18,0.85);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-dark:hover {
  background: rgba(38,38,38,0.95);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 2rem 2rem 2rem;
}

.footer-brand {
  margin-top: -30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: #888888;
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}

.social-link:hover {
  background: var(--accent);
  color: var(--dark);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  color: #888888;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-contact p {
  color: #888888;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { color: #666666; font-size: 0.82rem; }

/* ===== TJENESTER PAGE ===== */
.tjenester-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.tjeneste-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  user-select: none;
}

.tjeneste-item:hover,
.tjeneste-item.open {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(19,80,41,0.12);
}

.tjeneste-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.tjeneste-header h3 {
  font-size: 1.2rem;
  margin: 0;
}

.tjeneste-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(19,80,41,0.1);
  border: 1.5px solid rgba(19,80,41,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: all 0.3s;
  line-height: 1;
}

.tjeneste-item.open .tjeneste-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: rotate(45deg);
}

.tjeneste-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.tjeneste-item.open .tjeneste-body {
  max-height: 500px;
  opacity: 1;
  margin-top: 1.25rem;
}

.tjeneste-item .icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.tjeneste-body p { font-size: 0.92rem; margin-bottom: 1.25rem; }

.tjeneste-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tjeneste-tag {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #f0f5ff;
  z-index: 998;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 2.5rem;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
  animation: menuFadeIn .25s ease;
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(19,80,41,0.15);
  width: 100%;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
  padding-left: 0.5rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark);
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step-arrow-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .tjenester-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: left; }
  .hero { padding: 100px 1.5rem 60px; }
  section { padding: 60px 1.5rem; }
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
}

/* ============================= */
/* LEFT-ALIGN + LAYOUT FIXES     */
/* ============================= */

/* -- Global left-align -- */
body, h1, h2, h3, h4, p,
section, .container,
.section-header, .section-header h2, .section-header p,
.partners, .partners p,
.cta-banner, .cta-banner h2, .cta-banner p,
.page-header, .page-header h1, .page-header p,
.step, .value-card, .pricing-card, .about-stat,
.stat-item, .stat-label, .stat-number,
.footer-bottom, .why-visual,
.hero h1, .hero p {
  text-align: left;
}

/* -- Remove auto-centering margins -- */
.page-header p { margin: 0; max-width: 100%; }
.cta-banner p  { margin-left: 0; margin-right: 0; max-width: 600px; margin-bottom: 0; }

/* -- Partners -- */
.partners { padding: 2rem 2rem; }
.partners p { margin-bottom: 1rem; }
.partner-logos { justify-content: flex-start; gap: 2rem; }

/* -- Process steps -- */
.step { text-align: left; }
.step-number { margin: 0 0 1.2rem 0; }
.process-steps::before { display: none; }

/* -- Pricing card -- */
.popular-badge { left: 1.5rem; transform: none; }
.btn-outline { text-align: left; }

/* -- Values -- */
.value-card { text-align: left; }

/* -- About stats -- */
.about-stat { text-align: left; padding: 1.25rem; }

/* -- Footer -- */
.footer-bottom { flex-direction: row; justify-content: flex-start; text-align: left; }
.footer-brand p { margin: .2rem 0 .75rem; }

/* -- Contact items (no icon) -- */
.contact-item { display: block; margin-bottom: 1.75rem; }
.contact-item h4 { margin-bottom: .3rem; font-size: .88rem; }
.contact-item p  { font-size: .9rem; line-height: 1.6; }

.contact-quick { display: none; }

/* ===== CONTACT MOBILE ===== */
@media (max-width: 640px) {
  #page-kontakt .page-header { padding: 120px 1.5rem 60px; }
  #page-kontakt .ph-cta { flex-direction: column; gap: .75rem; }
  #page-kontakt .ph-cta a { text-align: center; justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Quick-action cards for phone/email */
  .contact-info { order: 1; }
  .contact-form { order: 2; }

  .contact-quick {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1.5rem;
  }
  .contact-quick-card {
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    transition: border-color .2s;
  }
  .contact-quick-card:hover { border-color: var(--accent); }
  .contact-quick-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
  }
  .contact-quick-val {
    font-size: .95rem;
    font-weight: 700;
    color: var(--accent-dark);
    font-family: var(--font-heading);
    letter-spacing: .02em;
  }

  .contact-item { margin-bottom: 1.1rem; }
  .hide-mobile { display: none; }
  .contact-info h3 { font-size: 1.3rem; margin-bottom: 1rem; }

  .opening-hours { margin-top: 1.5rem; border-radius: var(--radius); padding: 1.25rem; }
  .hour-row { padding: .4rem 0; font-size: .88rem; }

  .contact-form { padding: 1.5rem 1.25rem; border-radius: var(--radius-lg); }
  .contact-form h3 { font-size: 1.3rem; margin-bottom: 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 1rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 1rem; font-size: 1rem; border-radius: 10px; }
  .form-group textarea { min-height: 100px; }
  .btn-full { padding: 1.1rem; font-size: 1rem; border-radius: 10px; }

  .map-placeholder { min-height: 80px; margin-top: 1.5rem; border-radius: var(--radius-lg); }
}

/* -- Map placeholder -- */
.map-placeholder { text-align: left; align-items: flex-start; padding: 2rem; height: auto; min-height: 120px; }
.map-placeholder .map-icon { display: none; }
.map-placeholder h3 { font-size: 1.1rem; }

/* -- Form success -- */
.form-success { text-align: left; padding: 1.5rem 0; }

/* -- Prevent horizontal overflow -- */
html, body { overflow-x: hidden; }
.page { overflow-x: hidden; }
.ticker { overflow: hidden; }
.price-table-wrap { overflow-x: auto; }

/* -- Ensure no section collapses -- */
section { min-height: 0; }
.hero { overflow: hidden; }

/* ===== SVC SHOWCASE (Tjenester page) ===== */
.svc-showcase { background: var(--light); padding-bottom: 5rem; }

.svc-showcase-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 2rem;
}
.svc-showcase-header h2 { color: var(--dark); }
.svc-showcase-header p { margin-top: 0.5rem; font-size: 1.05rem; }

.svc-showcase-img {
  height: 440px;
  background-size: cover;
  background-position: center 35%;
  position: relative;
  border-radius: 22px;
  margin: 0 0.75rem;
  overflow: hidden;
}
.svc-showcase-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
}
.svc-showcase-cards {
  position: relative;
  z-index: 2;
  margin-top: -100px;
  padding: 0 2rem;
}
.svc-card-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 58px;
}
.svc-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3.25rem 1.5rem 1.75rem;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.16);
}
.svc-icon-box {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  background: linear-gradient(145deg, rgba(95,95,95,0.72) 0%, rgba(18,18,18,0.88) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 8px 28px rgba(0,0,0,0.3);
  overflow: hidden;
}
.svc-icon-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.16), transparent);
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}
.svc-icon-box svg {
  width: 32px;
  height: 32px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.65rem;
  text-align: center;
}
.svc-card > p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  text-align: center;
}
.svc-card-link {
  display: block;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s;
  text-align: center;
}
.svc-card-link:hover { color: var(--accent); }

/* — tablet: 2 columns — */
@media (max-width: 768px) {
  .svc-card-grid { grid-template-columns: repeat(2, 1fr); }
}

/* — small tablet — */
@media (max-width: 768px) {
  .svc-showcase { padding-bottom: 3rem; }
  .svc-showcase-header { padding: 1.5rem 1.5rem 1.5rem; }
  .svc-showcase-img { height: 300px; border-radius: 16px; margin: 0 1.25rem; }
  .svc-showcase-cards { margin-top: -80px; padding: 0 1.25rem; }
  .svc-card-grid { padding-top: 55px; gap: 2rem 1rem; }
  .svc-card { padding: 3.5rem 1.25rem 1.5rem; }
  #page-tjenester .page-header { padding: 110px 1.5rem 60px; }
  #page-tjenester .ph-cta { flex-wrap: wrap; gap: .75rem; }
}

/* — phone: single column — */
@media (max-width: 600px) {
  .svc-showcase-header { padding: 1.25rem 1rem 1.25rem; }
  .svc-showcase-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .svc-showcase-header p { font-size: 0.92rem; }
  .svc-showcase-img { height: 220px; border-radius: 14px; margin: 0 0.75rem; }
  .svc-showcase-cards { margin-top: -60px; padding: 0 0.75rem; }
  .svc-card-grid {
    grid-template-columns: 1fr;
    padding-top: 55px;
    gap: 2.5rem;
  }
  .svc-card {
    padding: 3.25rem 1.5rem 1.75rem;
    border-radius: 16px;
    text-align: center;
  }
  .svc-icon-box {
    width: 68px;
    height: 68px;
    top: -34px;
    border-radius: 14px;
  }
  .svc-icon-box svg { width: 30px; height: 30px; }
  .svc-card h3 { font-size: 1.1rem; text-align: center; }
  .svc-card > p { font-size: 0.9rem; text-align: center; }
  .svc-card-link {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.8rem 2rem;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    border-top: none;
    font-size: 0.78rem;
    width: auto;
    text-align: center;
  }
  .svc-card-link:hover { background: var(--accent); color: var(--white); }
  #page-tjenester .page-header { padding: 95px 1.25rem 50px; }
  #page-tjenester .page-header h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  #page-tjenester .page-header p { font-size: 0.95rem; }
  #page-tjenester .ph-cta { flex-direction: column; gap: 0.6rem; }
  #page-tjenester .ph-cta a { text-align: center; justify-content: center; width: 100%; }
}

/* ── PORTFOLIO FEATURED GRID ── */
.pf-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}
.pf-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
}
.pf-featured { grid-row: 1 / 3; }
.pf-img-wrap {
  margin: 8px 8px 0;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}
.pf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pf-card:hover .pf-img-wrap img { transform: scale(1.04); }
.pf-card:not(.pf-featured) .pf-img-wrap {
  flex: unset;
  aspect-ratio: 4/3;
  min-height: unset;
}
.pf-featured .pf-img-wrap { min-height: 320px; }
.pf-body { padding: 0.9rem 1rem 1.1rem; }
.pf-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.pf-featured .pf-body h3 { font-size: 1.35rem; }
.pf-body p { font-size: 0.82rem; color: var(--text-light); }
.pf-featured .pf-body p { font-size: 0.9rem; }

@media (max-width: 900px) {
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .pf-featured { grid-row: auto; }
  .pf-featured .pf-img-wrap { min-height: unset; }
  .pf-img-wrap { aspect-ratio: 4/3; flex: unset; }
}
@media (max-width: 500px) {
  .pf-grid { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ============================= */
/* RESPONSIVE FIXES              */
/* ============================= */
@media (max-width: 1024px) {
  .portfolio-strip { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.span2 { grid-column: span 2; }
  .milestone-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .portfolio-strip { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.span2 { grid-column: span 1; }
  .milestone-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 3.5rem 1.5rem; }
  .cta-banner p { max-width: 100%; }
  .about-grid { gap: 2.5rem; }
  .contact-grid { gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .footer-grid { gap: 0; }

  /* ── Footer accordion ── */
  .footer-col { border-bottom: 1px solid rgba(255,255,255,.08); padding: .75rem 0; }
  .footer-col h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
    user-select: none;
  }
  .footer-col h4::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,255,255,.45);
    transition: transform .3s, color .3s;
    font-family: var(--font);
    line-height: 1;
  }
  .footer-col.open h4::after {
    transform: rotate(45deg);
    color: var(--accent);
  }
  .footer-col ul,
  .footer-col .footer-contact-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .35s ease, opacity .28s ease, margin-top .3s ease;
    margin-top: 0;
  }
  .footer-col.open ul,
  .footer-col.open .footer-contact-body {
    max-height: 400px;
    opacity: 1;
    margin-top: .75rem;
  }
}
