:root {
  --primary-color: #dc002e;
  --deep-navy: #001f2f;
  --rich-teal: #00283c;
  --surface-dark: #022c43;
  --text-main: #f0f4f8;
  --text-muted: #aab4be;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--deep-navy);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.75;
  margin-bottom: 1em;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(220, 0, 46, 0.2);
  border-radius: 999px;
  background: rgba(220, 0, 46, 0.1);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.newsbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  min-height: 40px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, #001520 0%, #00283c 100%);
  font-size: 0.85rem;
}

body.admin-bar .newsbar {
  top: 32px;
}

.newsbar__badge {
  padding: 2px 8px;
  background: var(--primary-color);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.newsbar__link {
  font-weight: 600;
  text-decoration: underline;
}

.site-header {
  position: fixed;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  z-index: 1100;
  padding: 16px 24px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  backdrop-filter: blur(20px);
  background: rgba(0, 20, 30, 0.6);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

body.admin-bar .site-header {
  top: 87px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.site-logo-img {
  width: auto;
  height: 22px;
  display: block;
  filter: brightness(1.15);
}

.site-footer .site-logo-img {
  width: auto;
  height: 30px;
}

.primary-nav ul,
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  transition: all 0.25s ease;
}

.primary-nav > ul > li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.primary-nav li.menu-item-has-children {
  position: relative;
}

.primary-nav .sub-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  background: rgba(0, 20, 30, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 12px;
}

.primary-nav li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.primary-nav .sub-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.primary-nav .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.primary-nav .menu-item-has-children > a::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.8em;
  transition: transform 0.2s ease;
}

.primary-nav .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.primary-nav a.header-cta,
.primary-nav li.header-cta > a {
  background: var(--primary-color);
  color: #fff !important;
  box-shadow: 0 8px 20px -6px rgba(220, 0, 46, 0.5);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
}

.hero-home {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 100px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: rgba(0, 31, 47, 0.75);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #aab4be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin: 16px auto 0;
  max-width: 700px;
  color: #e0e0e0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(220, 0, 46, 0.4);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

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

.card-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card--link:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--primary-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.card h3 {
  margin: 14px 0 12px;
  font-size: 1.45rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.card-grid .card > a:not(.service-detail-cta) {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.card-grid .card > a:not(.service-detail-cta):hover {
  transform: translateX(4px);
}

.service-detail-grid {
  align-items: stretch;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.service-detail-card h3 {
  margin: 0;
}

.service-detail-card__body {
  color: var(--text-muted);
}

.service-detail-card__body > *:first-child {
  margin-top: 0;
}

.service-detail-card__body > *:last-child {
  margin-bottom: 0;
}

.service-detail-card__body p,
.service-detail-card__body li {
  color: var(--text-muted);
}

.service-detail-card__body p + p,
.service-detail-card__body ul,
.service-detail-card__body ol {
  margin-top: 14px;
}

.service-detail-card__body ul,
.service-detail-card__body ol {
  padding-left: 20px;
}

.section-alt {
  background: linear-gradient(to bottom, #001f2f, #022c43);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-reverse {
  direction: rtl;
}
.split-reverse > * {
  direction: ltr;
}

.split-media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-text ul {
  list-style: none;
  margin: 8px 0;
  padding: 0;
}

.split-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-muted);
  line-height: 1.7;
}

.split-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.split-text blockquote {
  border-left: 3px solid var(--primary-color);
  padding: 16px 24px;
  margin: 16px 0;
  background: var(--glass-bg);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);
}

.split h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.check-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 32px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1em;
}

.feature-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.feature-intro,
.feature-context {
  color: var(--text-muted);
}

.feature-context {
  margin-top: 18px;
}

.feature-section-head {
  margin-top: 28px;
}

.feature-section-head h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.feature-section-head p {
  margin: 0;
  color: var(--text-muted);
}

.feature-item {
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass-bg);
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--text-main);
}

.feature-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-cases {
  background: var(--rich-teal);
}

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

.case-media {
  position: relative;
  height: 280px;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: var(--primary-color);
  border-radius: 3px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.case-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.case-card h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.case-card p {
  color: var(--text-muted);
}

.case-card a {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== News fade-in animation ===== */
@keyframes newsFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.news-fade-in {
  animation: newsFadeIn 0.5s ease both;
}

/* ===== News Grid ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.news-item time {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-item h3 {
  margin: 8px 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.news-item h3 a {
  transition: color 0.2s ease;
}

.news-item h3 a:hover {
  color: var(--primary-color);
}

.news-item p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.news-read-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-color);
  border-bottom: none !important;
  transition: gap 0.2s ease;
}

.news-read-link:hover {
  gap: 8px;
  color: #ff4060;
}

.news-media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.news-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-media img {
  transform: scale(1.04);
}

.news-grid-rich .news-card {
  border-top: 0;
  padding-top: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.news-grid-rich .news-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.news-card__body {
  flex: 1;
  padding: 16px 20px 8px;
}

.news-card__body time { display: block; }
.news-card__body h3 { margin-left: 0; margin-right: 0; }
.news-card__body p { margin-left: 0; margin-right: 0; }

.news-card__foot {
  padding: 0 20px 18px;
}

.news-card__foot a {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.news-grid-archive .news-item time,
.news-grid-archive .news-item h3,
.news-grid-archive .news-item p,
.news-grid-archive .news-item a {
  margin-left: 16px;
  margin-right: 16px;
}

.news-grid-archive .news-item time {
  display: block;
  margin-top: 14px;
}

.news-grid-archive .news-item a {
  display: inline-block;
  margin-bottom: 16px;
}

.news-filters-wrap {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.news-filters-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.news-filters-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.news-filters-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.news-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.news-chip.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-numbers:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.page-numbers.current {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.page-numbers.current:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.page-numbers.prev,
.page-numbers.next {
  padding: 0 18px;
  font-weight: 600;
}

.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease;
}

.news-featured:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.news-featured__media {
  display: block;
  overflow: hidden;
}

.news-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-featured:hover .news-featured__media img {
  transform: scale(1.03);
}

.news-featured__content {
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(220, 0, 46, 0.12);
  border: 1px solid rgba(220, 0, 46, 0.35);
  color: #ff6d87;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-featured__content time {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.news-featured__content h2 {
  margin: 10px 0;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.3;
}

.news-featured__content h2 a {
  transition: color 0.2s ease;
}

.news-featured__content h2 a:hover {
  color: var(--primary-color);
}

.news-featured__content p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.news-featured__content > .news-read-link {
  align-self: flex-start;
}

.news-pagination {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== Article Single ===== */
/* ===== Article Single ===== */
.article-hero {
  padding-bottom: 60px;
}

.article-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.article-meta time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article-meta__sep {
  color: rgba(255, 255, 255, 0.3);
}

.article-tags {
  display: flex;
  gap: 8px;
}

.article-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-image-section {
  padding: 0 0 20px;
}

.article-featured-img {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 520px;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.5);
}

.article-featured-img img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-body-section {
  padding-top: 60px;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: #fff;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.article-content p,
.article-content li {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
}

.article-content img {
  border-radius: 10px;
  margin: 1.5em 0;
}

.article-content a {
  color: var(--primary-color);
  border-bottom: 1px solid rgba(220, 0, 46, 0.3);
}

.article-content blockquote {
  margin: 1.5em 0;
  padding: 20px 24px;
  border-left: 3px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 10px 10px 0;
}

/* ===== Article CTA ===== */
.article-cta {
  padding-top: 20px;
  padding-bottom: 0;
}

.article-cta__box {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-cta__text h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.article-cta__text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.article-cta__box .btn--primary {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .article-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
}

.news-empty {
  text-align: center;
  padding: 38px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.news-empty h3 {
  margin: 0 0 8px;
}

.news-empty p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 13, 20, 0.66) 0%, rgba(0, 13, 20, 0.88) 100%);
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__content {
  position: relative;
  z-index: 2;
}

/* Service sub-navigation cards */
.service-subnav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-subnav__card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.service-subnav__card:first-child .service-subnav__img {
  height: 100%;
  min-height: 240px;
}

.service-subnav__card:first-child .service-subnav__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-subnav__card:first-child .service-subnav__body h3 {
  font-size: 1.5rem;
}

.service-subnav__card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--glass-bg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-subnav__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-subnav__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-subnav__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-subnav__card:hover .service-subnav__img img {
  transform: scale(1.05);
}

.service-subnav__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-subnav__body h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.service-subnav__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
  flex: 1;
}

.service-subnav__usps {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.service-subnav__usps li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
}

.service-subnav__usps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.service-subnav__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .service-subnav {
    grid-template-columns: 1fr;
  }
  .service-subnav__card:first-child {
    grid-template-columns: 1fr;
  }
  .service-subnav__img {
    height: 200px;
  }
}

/* Radar highlight card — framed to match about-logo-card below */
.cert-highlight {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.cert-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.cert-highlight__badge {
  flex-shrink: 0;
}

.cert-highlight__badge img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.cert-highlight__content {
  flex: 1;
}

.cert-highlight__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.cert-highlight__content h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--text-main);
}

.cert-highlight__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 10px;
  line-height: 1.6;
}

.cert-highlight__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
}

.about-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-logo-card {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.about-logo-link {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-logo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 106, 171, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.about-logo-card img {
  width: auto;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.about-body {
  display: grid;
  gap: 18px;
}

.about-body p {
  margin: 0;
}

.about-values h3 + p {
  margin-bottom: 24px;
}

.nyhet-single-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.nyhet-single-media {
  margin: 0 0 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nyhet-single-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.nyhet-single-content {
  max-width: 860px;
  margin: 0 auto;
}

.cta-section {
  background: linear-gradient(to bottom, #001f2f, #000508);
  position: relative;
}

.cta-box {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
  padding: 64px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.03);
}

.cta-box h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.cta-box p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  padding-top: 180px;
  padding-bottom: 70px;
  background: linear-gradient(to bottom, #001f2f, #000d14);
}

.center {
  text-align: center;
  max-width: 900px;
}

.center h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.center p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form-status {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form__website {
  position: absolute;
  left: -9999px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}

.contact-form__recaptcha {
  min-height: 78px;
  overflow: visible;
}

.contact-form__recaptcha iframe {
  max-width: 100%;
}

.page-default {
  padding-top: 180px;
}

.kundcase-archive .case-card {
  padding: 0 0 10px;
}

.kundcase-archive .pagination {
  margin-top: 38px;
  display: flex;
  gap: 10px;
}

.kundcase-archive .pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}

.kundcase-archive .pagination .current {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.kundcase-single-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.kundcase-single-media {
  margin: 0 0 34px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.6);
  max-height: 520px;
}

.kundcase-single-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.kundcase-single-content {
  max-width: 820px;
  margin: 0 auto;
}

.kundcase-single-content [data-elementor-type='wp-post'],
.kundcase-single-content .elementor,
.kundcase-single-content .elementor-widget-wrap,
.kundcase-single-content .elementor-widget-container,
.kundcase-single-content [class*='e-con'] {
  display: block !important;
}

.kundcase-single-content h2,
.kundcase-single-content h3,
.kundcase-single-content h4 {
  color: #fff;
  line-height: 1.28;
  margin-top: 1.7em;
  margin-bottom: 0.55em;
}

.kundcase-single-content p,
.kundcase-single-content li {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.kundcase-single-content ul,
.kundcase-single-content ol {
  padding-left: 1.2rem;
}

.kundcase-single-content figure {
  margin: 1.2rem 0;
}

.kundcase-single-content iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 10px;
}

.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.button-ghost:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.prose {
  max-width: 860px;
}

.prose h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 12px;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.policy-page {
  display: grid;
  gap: 28px;
}

.policy-lead {
  font-size: 1.08rem;
  line-height: 1.8;
}

.policy-meta,
.policy-note {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.policy-meta p,
.policy-note p {
  margin: 0;
}

.policy-meta p + p {
  margin-top: 10px;
}

.policy-page h2 {
  margin: 14px 0 8px;
  color: #fff;
}

.policy-page h3 {
  margin: 10px 0 6px;
  color: #fff;
}

.policy-page ul {
  margin: 0;
  padding-left: 1.25rem;
}

.policy-page li + li {
  margin-top: 8px;
}

.policy-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
}

.policy-table th,
.policy-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
  text-align: left;
}

.policy-table th {
  color: #fff;
  font-weight: 700;
}

.policy-table td {
  color: var(--text-muted);
}

.policy-table tr:last-child th,
.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-updated {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step-card {
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.process-step-card__index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary-color);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.process-step-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.process-step-card p {
  margin: 0;
  color: var(--text-muted);
}

.process-side-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
}

.process-side-card h3 {
  margin: 0 0 10px;
}

.process-side-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.process-side-card li {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sustainability-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sustainability-metric {
  text-align: center;
  padding: 28px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.sustainability-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary-color);
  line-height: 1;
}

.sustainability-metric span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--rich-teal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 90px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-grid h4 {
  margin: 0 0 18px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-grid li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.footer-service-links {
  margin-top: 24px;
}

.footer-subheading {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.news-results {
  padding-top: 48px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.muted {
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .card-grid,
  .case-grid,
  .news-grid,
  .footer-grid,
  .process-steps,
  .sustainability-metrics,
  .about-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-featured__media img {
    min-height: 240px;
  }

  .feature-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .wrap {
    width: min(1400px, calc(100% - 34px));
  }

  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    left: 50%;
    top: 102px;
    transform: translateX(-50%);
    width: min(92vw, 480px);
    background: rgba(0, 20, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
    display: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav .menu-item-has-children .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.03);
  }

  .card-grid,
  .case-grid,
  .news-grid,
  .footer-grid,
  .process-steps,
  .sustainability-metrics,
  .about-logo-grid {
    grid-template-columns: 1fr;
  }

  .newsbar {
    font-size: 0.75rem;
    line-height: 1.25;
    padding-inline: 12px;
  }

  .newsbar__badge,
  .newsbar__link {
    flex: 0 0 auto;
  }

  .newsbar__text {
    display: inline;
    min-width: 0;
    white-space: normal;
  }

  .newsbar__link {
    white-space: nowrap;
  }

  body.admin-bar .newsbar {
    top: 46px;
  }

  body.admin-bar .site-header {
    top: 101px;
  }

  body.admin-bar .primary-nav {
    top: 148px;
  }

  .kundcase-single-content iframe {
    min-height: 260px;
  }

  .kundcase-single-media {
    max-height: 300px;
  }

  .kundcase-single-media img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .newsbar {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "badge link"
      "text text";
    justify-content: stretch;
    gap: 4px 10px;
    padding: 8px 12px;
    text-align: left;
  }

  .newsbar__badge {
    grid-area: badge;
    justify-self: start;
  }

  .newsbar__text {
    grid-area: text;
    display: block;
    line-height: 1.35;
  }

  .newsbar__link {
    grid-area: link;
    justify-self: end;
  }

  .site-header {
    top: 94px;
  }

  .primary-nav {
    top: 150px;
  }

  body.admin-bar .site-header {
    top: 140px;
  }

  body.admin-bar .primary-nav {
    top: 196px;
  }
}

/* Chatbot Widget */
/* ===== Contact FAB ===== */
.it-contact-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--primary-color, #e8192c);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.it-contact-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.it-contact-fab__ping {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: fab-pulse 2s ease-in-out infinite;
}

@keyframes fab-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.it-contact-fab__label {
  white-space: nowrap;
}

@media (max-width: 860px) {
  .it-contact-fab {
    right: 12px;
    bottom: 12px;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

/* Reduce gap between news filter and news grid */
.news-filters-wrap {
  margin-bottom: 0;
}
section.section:has(.news-filters-wrap) {
  padding-bottom: 0;
}
section.section:has(.news-filters-wrap) + section.section {
  padding-top: 2.5rem;
}

/* Service detail CTA link */
.service-detail-cta {
  align-self: flex-start;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.service-detail-cta:hover {
  background: #b00025;
  transform: translateY(-1px);
}

/* Service detail card image */
.service-detail-card__img {
  margin: -20px -20px 16px -20px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  height: 180px;
}
.service-detail-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature process callout */
.feature-process-callout {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.feature-process-callout h3 {
  font-size: 1.3rem;
  margin: 0 0 0.75rem 0;
}
.feature-process-callout p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}


/* News filter bar - clean */
.news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 20px 0 24px 0;
}
.news-filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.news-filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.news-filter-btn.is-active {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Filter button count badge */
.news-filter-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.news-filter-btn.is-active .news-filter-btn__count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.news-filter-total {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  padding: 8px 0 0 0;
}

/* News filter toggle bar */
.news-filter-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.02);
}
.news-filter-toggle:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.news-filter-toggle__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.news-filter-toggle__active {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}
.news-filter-toggle__meta {
  margin-left: auto;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}
.news-filter-toggle__chevron {
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.25s ease;
}

/* Dropdown */
.news-filter-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.news-filter-dropdown.is-open {
  max-height: 300px;
  padding-top: 12px;
}
.news-filter-dropdown.is-open + .news-filter-toggle .news-filter-toggle__chevron,
.news-filter-dropdown.is-open ~ .news-filter-toggle__chevron {
  transform: rotate(180deg);
}

/* Contact info cards */
.contact-info-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-card {
  padding: 20px !important;
}
.contact-info-card h3 {
  font-size: 0.9rem;
  margin: 0 0 8px 0;
}
.contact-info-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 4px 0;
  color: var(--text-muted);
}
.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
}
.contact-info-card a:hover {
  text-decoration: underline;
}

/* ===== Hållbarhet — tightare CTA-box (scoped till .hallbarhet-page only) ===== */
.hallbarhet-page .cta-section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.hallbarhet-page .cta-box {
  padding: 32px 30px 30px;
}
.hallbarhet-page .cta-box h2 {
  line-height: 1.05;
  margin: 0 0 8px;
}
.hallbarhet-page .cta-box p {
  margin: 0 0 14px;
  line-height: 1.4;
}
.hallbarhet-page .cta-box .btn-primary {
  margin: 0;
}
/* Hållbarhet — nuke tom page-default-sektion ovanför CTA */
.hallbarhet-page .section.page-default {
  padding-top: 0;
  padding-bottom: 0;
}

/* Hållbarhet — full-width banner-bild */
.hallbarhet-page .hallbarhet-banner-section {
  padding: 0;
  margin: 0;
}
.hallbarhet-page .hallbarhet-banner {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

/* Säkerhetsfokus — hero med bakgrundsbild, text ovanpå */
.sakerhet-page .sakerhet-hero {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  background-image: linear-gradient(180deg, rgba(2, 17, 28, 0.55), rgba(2, 17, 28, 0.72)), var(--sk-hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sakerhet-page .sakerhet-hero .wrap {
  position: relative;
  z-index: 1;
}

/* Hållbarhet — lite mer luft kring CTA-boxen igen */
.hallbarhet-page .cta-section {
  padding-top: 70px;
  padding-bottom: 70px;
}


/* Consulting — göm "Läs mer"-knappar (bara på consulting-sidan) */
.page-id-128 .service-detail-cta {
  display: none;
}

/* AI & Automation — göm "Läs mer"-knappar utom länkar till externa resurser */
.page-id-127 .service-detail-cta {
  display: none;
}
.page-id-127 .service-detail-cta[href*="it-total-blogg"],
.page-id-127 .service-detail-cta[href*="bli-ai-ready"] {
  display: inline-block;
}

/* Cloud Infrastructure — göm alla "Läs mer" utom Network och externa CTAs (t.ex. Northmill) */
.page-id-123 .service-detail-cta {
  display: none;
}
.page-id-123 .service-detail-cta[href*="network"],
.page-id-123 .service-detail-cta[href*="northmill"] {
  display: inline-block;
}

/* Om oss — minska avstånd mellan textblock och hörnstenar */
.page-id-679 .section.reveal + .section.section-alt {
  padding-top: 40px;
}
.page-id-679 .section.reveal:nth-child(2) {
  padding-bottom: 40px;
}

/* Business IT — göm alla "Läs mer" utom Datadriven */
.page-id-126 .service-detail-cta {
  display: none;
}
.page-id-126 .service-detail-cta[href*="datadriven"] {
  display: inline-block;
}

/* Responsive 16:9 video embed (YouTube etc.) */
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Digital Workplace — DEX video section */
.dw-dex-wrap {
  display: grid;
  gap: 24px;
  align-items: center;
}
.dw-dex-intro h2 {
  margin: 0 0 8px;
}
.dw-dex-intro p {
  color: var(--text-muted);
  margin: 0 0 12px;
  max-width: 60ch;
}
@media (min-width: 900px) {
  .dw-dex-wrap {
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
  }
}

/* === "Läs mer"-button color override: match menu contact CTA ===
   Scoped to actual "Läs mer" buttons only. Nav "Kontakt", bottom-CTA buttons,
   newsbar badge, and the floating contact FAB stay red. */

.service-detail-cta {
  background: var(--primary-color);
  color: #fff;
}
.service-detail-cta:hover {
  background: #b00025;
  color: #fff;
  transform: translateY(-1px);
}

.split-text__cta .btn-primary,
.split-text__cta a.btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(220, 0, 46, 0.45);
}
.split-text__cta .btn-primary:hover,
.split-text__cta a.btn-primary:hover {
  background: #b00025;
  color: #fff;
}
