/* ============================================
   amp. — Global Stylesheet
   Colors: #000025 (navy), #dc55a4 (pink), #9ec345 (green)
   Font: Poppins (Google Fonts)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,700&display=swap');

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

:root {
  --bg: #000025;
  --bg-secondary: #0a0a3a;
  --white: #ffffff;
  --pink: #dc55a4;
  --pink-dark: #cc228a;
  --green: #9ec345;
  --navy-light: #324158;
  --border: #cbdce9;
  --text-muted: rgba(255,255,255,0.65);
  --max-width: 1280px;
  --section-pad: 100px 40px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 37, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-svg {
  height: 28px;
  width: auto;
  display: block;
}

/* Large footer logo */
.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo-svg {
  height: 52px;
  width: auto;
  display: block;
}

/* Pill nav wrapper */
.nav-pill-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Pill container for Hjem / Om oss / Tjenester */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 40px;
  padding: 8px 8px;
  background: transparent;
}

.nav-pill a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  padding: 6px 18px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-pill a:hover { background: rgba(255,255,255,0.1); }

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

/* KONTAKT pill button */
.btn-kontakt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 40px;
  padding: 10px 24px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-kontakt:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

/* ============ MOBILE NAV ============ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--bg);
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}

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

.page-top { padding-top: 160px; }

/* ============ TYPOGRAPHY ============ */
h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 14px; font-weight: 600; }
p { line-height: 1.75; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 48fr 52fr;
  position: relative;
  overflow: hidden;
}

/* Subtle pink atmosphere on the right */
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 5%;
  width: 65%;
  height: 90%;
  background: radial-gradient(ellipse at 55% 45%, rgba(200,30,130,0.13) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Eyebrow label */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--pink);
  flex-shrink: 0;
}

/* Main headline */
.hero h1 {
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
}

.hero-pink { color: var(--pink); }

.hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.8;
  max-width: 420px;
}

/* Lime green CTA pill */
.btn-green-pill {
  display: inline-block;
  background: var(--green);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 40px;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-green-pill:hover {
  background: #8ab538;
  transform: translateY(-2px);
}

/* City strip */
.hero-cities {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.hero-city-dot { color: var(--pink); opacity: 0.6; }

/* Floating amp with pink bloom */
.hero-amp-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,85,164,0.22) 0%, rgba(180,30,120,0.08) 50%, transparent 70%);
  pointer-events: none;
}

.hero-amp-img {
  width: 88%;
  max-width: 540px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 40px 100px rgba(220,85,164,0.35))
          drop-shadow(0 8px 40px rgba(0,0,0,0.5));
}

/* ============ STATEMENT ============ */
.statement-section {
  padding: 100px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.statement-text {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.statement-pink { color: var(--pink); }

/* ============ VALUE PROPS ============ */
.value-props-section {
  padding: 0 40px 100px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.value-props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.value-prop {
  padding: 56px 48px 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.value-prop:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.vp-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 20px;
}

.value-prop h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.value-prop p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ============ SERVICES VISUAL ============ */
.services-visual-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.services-visual-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.circles-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
}

.circles-img-1,
.circles-img-2 {
  position: absolute;
  width: 60%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.circles-img-1 { right: 0; top: 0; }
.circles-img-2 { left: 0; top: 0; }

.services-visual-text h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  margin: 16px 0 20px;
  letter-spacing: -0.3px;
}

.services-visual-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
}

/* ============ FOR HVEM ============ */
.forhvem-section {
  padding: 100px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.forhvem-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
}

.forhvem-divider {
  background: rgba(255,255,255,0.08);
}

.forhvem-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.forhvem-list li {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.forhvem-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 12px;
  top: 4px;
}

/* ============ HOME CTA ============ */
.home-cta-section {
  padding: 100px 40px 120px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.home-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.home-cta-amp {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 30px 80px rgba(220,85,164,0.3))
          drop-shadow(0 8px 30px rgba(0,0,0,0.4));
}

.home-cta-text h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.home-cta-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 400px;
}

.btn-green-outline-pill {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
}

.btn-green-outline-pill:hover {
  background: var(--green);
  color: var(--bg);
}

/* ============ CLIENTS / LOGO MARQUEE ============ */
.clients-logo-section {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0;
}

.clients-logo-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.logo-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  animation: logo-scroll 35s linear infinite;
  white-space: nowrap;
  padding: 8px 0;
}

.logo-marquee-inner:hover { animation-play-state: paused; }

.marquee-logo {
  height: 88px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.marquee-logo:hover { opacity: 0.9; }

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg);
}

.footer-separator-line {
  width: 100%;
  height: 2px;
  background: var(--pink);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 60px;
}

/* footer-logo size/display defined with .logo block above */

.footer-email {
  font-size: 14px;
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
  display: block;
}

.footer-email:hover { opacity: 0.8; }

.footer-social {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-social:hover { color: var(--pink); }

.footer-nav-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav-col a:hover { color: var(--white); }

.footer-newsletter-col p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--white);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { outline: none; border-color: rgba(255,255,255,0.5); }

.newsletter-form button {
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  border-radius: 0 4px 4px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover { background: rgba(255,255,255,0.85); }
.newsletter-form button:disabled { opacity: 0.6; cursor: wait; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.newsletter-msg {
  margin-top: 12px;
  font-size: 13px;
}

.newsletter-msg--ok { color: var(--green); }
.newsletter-msg--err { color: #ff8fab; }

.coming-soon {
  padding: 80px 40px 120px;
  text-align: center;
}

.coming-soon p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--white); }

/* ============ DIVIDER (for inner pages) ============ */
.divider {
  width: 60px;
  height: 3px;
  background: var(--pink);
  margin-bottom: 32px;
}

.divider-center { margin: 0 auto 32px; }

.overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}

/* ============ BUTTONS (generic) ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}

.btn-primary { background: var(--pink); color: var(--bg); }
.btn-primary:hover { background: var(--pink-dark); }

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

.btn-outline:hover { background: var(--white); color: var(--bg); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 160px 40px 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 { max-width: 680px; margin-bottom: 24px; }

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
}

/* ============ SECTION HEADERS (inner pages) ============ */
.section-header { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: rgba(220,85,164,0.4); transform: translateY(-4px); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 15px; }

/* ============ PILLAR SECTION (Om oss) ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}

.pillar-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--pink);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 8px;
}

.pillar h3 { margin-bottom: 16px; }
.pillar p { font-size: 15px; color: var(--text-muted); }

/* ============ COMPETENCE CARDS ============ */
.competence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.comp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 40px 32px;
  transition: border-color 0.2s;
}

.comp-card:hover { border-color: rgba(158,195,69,0.4); }

.comp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(158,195,69,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.comp-card h3 { font-size: 20px; margin-bottom: 12px; }
.comp-card p { font-size: 14px; color: var(--text-muted); }

/* ============ HIRING CALLOUT ============ */
.hiring-callout {
  background: rgba(158,195,69,0.08);
  border: 1px solid rgba(158,195,69,0.2);
  border-radius: 8px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hiring-callout h4 { color: var(--green); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.hiring-callout p { font-size: 15px; color: var(--text-muted); max-width: 600px; }

/* ============ SERVICE CARDS ============ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 48px 36px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover { border-color: rgba(220,85,164,0.3); transform: translateY(-4px); }

.service-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.service-card h3 { margin-bottom: 8px; }
.service-card .service-card-sub { font-size: 18px; font-weight: 500; color: var(--text-muted); margin-bottom: 20px; }
.service-card p { font-size: 14px; color: var(--text-muted); }

/* ============ TRANSFORMATION ============ */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.transform-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
}

.transform-from { font-size: 18px; font-weight: 600; color: var(--text-muted); }
.transform-arrow { font-size: 24px; color: var(--green); flex-shrink: 0; }
.transform-to { font-size: 18px; font-weight: 700; color: var(--white); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--pink);
  padding: 80px 40px;
  text-align: center;
}

.cta-banner h2 { color: var(--bg); margin-bottom: 12px; }
.cta-banner p { color: rgba(0,0,37,0.75); font-size: 18px; margin-bottom: 40px; }

.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-cta-dark {
  background: var(--bg);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s;
}

.btn-cta-dark:hover { background: #000040; }

.btn-cta-outline {
  background: transparent;
  color: var(--bg);
  border: 2px solid var(--bg);
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-cta-outline:hover { background: var(--bg); color: var(--white); }

/* ============ TIMELINE ============ */
.timeline-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.timeline-col {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.timeline-col:last-child { border-right: none; }

.timeline-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(220,85,164,0.3);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-item span { font-size: 14px; color: var(--text-muted); }

/* ============ CONTACT FORM ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--pink); }

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

.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

.contact-channels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
  color: var(--pink);
  display: block;
}

.contact-social {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact-social:hover { color: var(--pink); }

.offices .overline {
  display: block;
  margin-bottom: 8px;
}

.office {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.office:last-child { border-bottom: none; padding-bottom: 0; }
.office h4 { font-size: 15px; margin-bottom: 6px; }
.office address { font-size: 14px; color: var(--text-muted); font-style: normal; line-height: 1.6; }

.contact-expect {
  margin-top: 40px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}

.contact-expect h5 {
  margin-bottom: 16px;
  color: var(--pink);
}

.contact-expect-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-expect-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-expect-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(220,85,164,0.15);
  border: 1px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
}

.contact-expect-step p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============ BLOG ============ */
.blog-categories { display: flex; gap: 8px; margin-bottom: 60px; flex-wrap: wrap; }

.cat-btn {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}

.cat-btn:hover, .cat-btn.active { background: var(--pink); border-color: var(--pink); color: var(--bg); }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 36px; }

.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.blog-card:hover { border-color: rgba(220,85,164,0.3); transform: translateY(-4px); }

.blog-card-img { width: 100%; height: 220px; object-fit: cover; }

.blog-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #0d0d3a 0%, #1a1a50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 14px;
  letter-spacing: 1px;
}

.blog-card-body { padding: 28px; }
.blog-cat-tag { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; display: block; }
.blog-card-body h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.blog-meta { font-size: 12px; color: rgba(255,255,255,0.35); display: flex; gap: 12px; }

/* ============ CASE CARDS ============ */
.case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: border-color 0.2s;
}

.case-card:hover { border-color: rgba(220,85,164,0.3); }
.case-card-image { background: linear-gradient(135deg, #0d0d3a 0%, #1a1a50 100%); min-height: 320px; display: flex; align-items: center; justify-content: center; padding: 40px; }
.case-card-image .client-name { font-size: 32px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.case-card-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.case-tag { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); margin-bottom: 16px; }
.case-card-content h3 { margin-bottom: 20px; }
.case-quote { font-size: 15px; color: var(--text-muted); font-style: italic; border-left: 3px solid var(--pink); padding-left: 20px; margin-bottom: 32px; line-height: 1.7; }
.quote-attribution { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; font-style: normal; }

/* ============ SPLIT SECTION ============ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

/* ============ TICKER ============ */
.ticker-wrap {
  overflow: hidden;
  background: var(--pink);
  padding: 12px 0;
  user-select: none;
}

.ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ticker-scroll 36s linear infinite;
  white-space: nowrap;
}

.ticker-inner span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bg);
  flex-shrink: 0;
}

.ticker-dot {
  font-size: 8px;
  flex-shrink: 0;
  opacity: 0.4;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ PAIN SECTION ============ */
.pain-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pain-intro {
  margin-bottom: 72px;
}

.pain-intro h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  margin-top: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pain-item {
  display: flex;
  gap: 28px;
  padding: 52px 48px 52px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}

.pain-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.pain-item:nth-child(n+3) {
  border-bottom: none;
}

.pain-num {
  font-size: 52px;
  font-weight: 700;
  font-style: italic;
  color: var(--pink);
  opacity: 0.15;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}

.pain-body h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ============ HOME SERVICES ============ */
.home-services-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.home-services-heading {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 16px 0 24px;
}

.home-services-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 52px;
}

.home-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.home-service-card {
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
}

.home-service-card:last-child { border-right: none; }

.home-service-card:hover { background: rgba(255,255,255,0.03); }

.home-service-card--featured { background: rgba(220,85,164,0.05); }
.home-service-card--featured:hover { background: rgba(220,85,164,0.09); }

.hsc-letter {
  font-size: 80px;
  font-weight: 700;
  font-style: italic;
  color: var(--pink);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 16px;
  display: block;
}

.home-service-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.home-service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 28px;
}

.hsc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}

.hsc-link:hover { opacity: 0.75; transform: translateX(4px); }

/* ============ FACES SECTION ============ */
.faces-section {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
}

.face-panel {
  background: #00001c;
  overflow: hidden;
}

.face-img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  display: block;
  padding: 32px;
  transition: transform 0.6s ease;
}

.face-panel:hover .face-img {
  transform: scale(1.03);
}

.faces-caption-bar {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.faces-quote {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 24px;
}

.faces-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
  display: inline-block;
  transition: opacity 0.2s;
}

.faces-link:hover { opacity: 0.75; }

/* ============ FOR HVEM (redesigned) ============ */
.forhvem-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.forhvem-heading {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 16px 0 52px;
}

.forhvem-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 840px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 32px 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.check-item:nth-child(even) {
  padding-left: 32px;
  padding-right: 0;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.check-item:nth-last-child(-n+2) { border-bottom: none; }

.check-arrow {
  color: var(--pink);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  font-weight: 700;
}

/* ============ RESPONSIVE INLINE GRIDS ============ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.grid-3-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.section-block {
  padding: 100px 40px;
}

.approach-box {
  background: rgba(158,195,69,0.06);
  border: 1px solid rgba(158,195,69,0.15);
  border-radius: 12px;
  padding: 60px;
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 45vw; border-radius: 0; }
  .hero-left { padding: 100px 40px 60px; }

  .value-props-grid { grid-template-columns: 1fr; gap: 40px; }

  .pillars,
  .competence-grid,
  .service-cards { grid-template-columns: 1fr 1fr; }

  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }

  .case-card { grid-template-columns: 1fr; }
  .case-card-image { min-height: 200px; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 24px; }

  .header-inner { padding: 0 24px; }

  .nav-pill-wrap { display: none; }
  .hamburger { display: flex; }

  .hero-left { padding: 100px 24px 60px; }
  .hero-right { min-height: 60vw; }

  .large-heading-section { padding: 60px 24px 40px; }
  .value-props-section { padding: 20px 24px 60px; }

  .challenges-boxes { grid-template-columns: 1fr; }

  .amp-cta-inner { justify-content: center; flex-direction: column; align-items: center; text-align: center; }

  .pillars,
  .competence-grid,
  .service-cards,
  .transformation-grid { grid-template-columns: 1fr; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hiring-callout { flex-direction: column; }
  .container { padding: 0 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .cta-banner { padding: 60px 24px; }

  .grid-2,
  .grid-2-tight {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3-panels {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 70px 24px;
  }

  .approach-box {
    padding: 36px 24px;
  }

  .transform-item {
    padding: 20px 18px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .transform-from,
  .transform-to {
    font-size: 15px;
  }
}

/* ── New sections: tablet ── */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-item { padding: 40px 0 !important; border-left: none !important; }
  .pain-item:nth-child(n+3) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pain-item:last-child { border-bottom: none; }

  .home-service-cards { grid-template-columns: 1fr; border-radius: 8px; }
  .home-service-card { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .home-service-card:last-child { border-bottom: none; }

  .forhvem-checks { max-width: 100%; }
}

/* ── New sections: mobile ── */
@media (max-width: 768px) {
  .pain-section { padding: 80px 0; }
  .pain-intro { margin-bottom: 48px; }

  .home-services-section { padding: 80px 0; }
  .home-services-heading { margin-bottom: 36px; }
  .hsc-letter { font-size: 56px; }

  .faces-grid { grid-template-columns: 1fr; }
  .face-img { height: 300px; padding: 24px; }
  .faces-caption-bar { padding: 40px 0; }
  .faces-quote { font-size: 17px; }

  .forhvem-section { padding: 80px 0; }
  .forhvem-checks { grid-template-columns: 1fr; }
  .check-item { padding: 20px 0 !important; border-left: none !important; }
  .check-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .check-item:last-child { border-bottom: none; }

  .grid-3-panels > div {
    padding: 36px 28px !important;
    border-left: none !important;
    border-right: none !important;
  }
}
