/* ============================================
   GNX theme
   Layout, typography and components modelled on
   rohde-schwarz.com: condensed headline face,
   square corners, hairline rules, edge to edge
   photo stages, teaser tiles, navy utility band
   over a white menu bar.
   Palette is the house gold on navy (unchanged):
   see the role based accent tokens below.
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #FFFFFF;
  --bg-cream: #F3F4F6;   /* light band behind cards */
  --bg-warm: #F3F4F6;
  --bg-gray: #F3F4F6;
  --bg-dark: #0F1B2E;
  --bg-card: #FFFFFF;
  --text-primary: #0F1B2E;
  --text-secondary: #44546A;
  --text-muted: #8A94A6;
  /* Gold is the primary accent. It is a light hue, so the role of each token
     matters: --accent paints surfaces (and needs --on-accent for its text),
     --accent-text is the darkened gold that stays readable on white, and
     --accent-on-dark is the brightened gold for navy panels. */
  --accent: #C9A227;             /* fills, borders, icon plates              */
  --accent-hover: #B08A1C;       /* deeper gold for hover fills             */
  --accent-light: #FBF4DE;       /* pale gold wash                          */
  --accent-tint: #F3E6BC;        /* gold wash, one step stronger            */
  --on-accent: #0F1B2E;          /* navy text on a gold surface   7.1:1     */
  --accent-text: #8A6D12;        /* gold text/links on white      4.9:1     */
  --accent-text-hover: #6E560D;  /* darker still on hover         6.9:1     */
  --accent-on-dark: #E2C35C;     /* gold text on navy            10.0:1     */
  --border: #D3D7DE;             /* hairline rules, visible like R&S #cbcbcb */
  --border-light: #E4E7EC;
  --shadow: 0 1px 2px rgba(15, 27, 46, 0.06);
  --shadow-md: 0 4px 14px rgba(15, 27, 46, 0.08);
  --shadow-lg: 0 10px 30px rgba(15, 27, 46, 0.12);
  --radius: 0;                   /* square components throughout            */
  --radius-sm: 0;
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-head: 'Roboto Condensed', 'Arial Narrow', 'Roboto', Arial, sans-serif;
  --transition: all 0.25s ease;
  /* Faint diagonal bands on navy surfaces (header, footer, stages). */
  --stripe: linear-gradient(112deg, transparent 0 44%, rgba(255, 255, 255, 0.035) 44% 56%, transparent 56% 72%, rgba(255, 255, 255, 0.025) 72% 86%, transparent 86%);
}

/* ---------- Global ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main) !important;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Everything reads in Roboto; headings, buttons and nav in Roboto Condensed. */
p, a, li, span, label, input, textarea, button, select, td, th, dt, dd, small, strong, em, blockquote, figcaption {
  font-family: var(--font-main) !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-head) !important;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.2;
  margin: 0 0 14px;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-family: inherit !important;
}

h1 { font-size: 46px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 26px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}

a {
  color: var(--accent-text);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:focus {
  color: var(--accent-text-hover);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

/* Legacy background utilities on the page wrapper. */
.gray-bg { background: var(--bg-gray) !important; }
.white-bg { background: #FFFFFF !important; }
.black-half-bg { background: var(--bg-dark) !important; }

/* Legacy section paddings, tightened to the new rhythm. */
.ptb-100 { padding: 72px 0 !important; }
.pt-100 { padding-top: 72px !important; }
.pb-120 { padding-bottom: 72px !important; }

/* ---------- Buttons ---------- */
/* R&S buttons: square, condensed bold label, 165px minimum width, and the
   fill and text swap on hover. Primary sits on white, dark sits on navy. */
.rs-btn,
.hero-cta,
.corporate-cta,
.cta-btn,
.contact-submit,
.btn-one,
a.btn-one,
.search-page-btn,
.four-zero-content a,
.no-results-links .btn-link,
.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 165px;
  padding: 11px 22px;
  border: 1px solid var(--accent);
  border-radius: 0 !important;
  background: var(--accent);
  color: var(--on-accent) !important;
  font-family: var(--font-head) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: none !important;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.rs-btn i,
.cta-btn i,
.contact-submit i {
  font-size: 13px;
}

.rs-btn--primary:hover,
.hero-cta:hover,
.corporate-cta:hover,
.cta-btn:hover,
.contact-submit:hover,
.btn-one:hover,
a.btn-one:hover,
.search-page-btn:hover,
.four-zero-content a:hover,
.no-results-links .btn-link:hover {
  background: #FFFFFF;
  border-color: var(--accent);
  color: var(--accent-text) !important;
}

.rs-btn--secondary {
  background: #FFFFFF;
  color: var(--accent-text) !important;
}

.rs-btn--secondary:hover {
  background: var(--accent);
  color: var(--on-accent) !important;
}

/* On navy and photo stages the hover state opens up instead of whitening. */
.rs-btn--dark:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent-on-dark) !important;
}

.rs-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #FFFFFF !important;
}

.rs-btn--ghost:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--text-primary) !important;
}

.rs-btn--sm {
  min-width: 0;
  padding: 8px 18px;
  font-size: 14px;
}

.support-btn-ghost {
  background: transparent;
  color: var(--accent-text) !important;
}

.support-btn-ghost:hover {
  background: var(--accent);
  color: var(--on-accent) !important;
}

/* Tertiary link: arrow first, condensed bold label. */
.rs-arrow-link,
.card-link,
.single-blog .post-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head) !important;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-text) !important;
  text-decoration: none !important;
  transition: var(--transition);
}

.rs-arrow-link::before,
.card-link::before,
.single-blog .post-btn a::before {
  content: '\f178';
  font-family: FontAwesome !important;
  font-weight: 400;
  font-size: 13px;
  transition: transform 0.25s ease;
}

.rs-arrow-link:hover,
.card-link:hover,
.single-blog .post-btn a:hover {
  color: var(--accent-text-hover) !important;
}

.rs-arrow-link:hover::before,
.card-link:hover::before {
  transform: translateX(3px);
}

.card-link i,
.single-blog .post-btn a i {
  display: none;
}

/* ---------- Section rhythm ---------- */
.rs-section {
  padding: 72px 0;
  background: #FFFFFF;
}

.rs-section--flush-top { padding-top: 0; }
.rs-section--flush-bottom { padding-bottom: 0; }

.rs-band {
  padding: 72px 0;
  background: var(--bg-gray);
}

.rs-band--tight { padding: 40px 0 72px; }

.rs-section--navy {
  padding: 72px 0;
  background-color: var(--bg-dark);
  background-image: var(--stripe);
  color: #FFFFFF;
}

.rs-eyebrow,
.section-label {
  display: block;
  font-family: var(--font-head) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 10px;
}

.section-label--light,
.rs-section--navy .rs-eyebrow,
.rs-section__head--light .rs-eyebrow {
  color: var(--accent-on-dark);
}

.rs-section__head,
.section-header {
  max-width: 780px;
  margin-bottom: 40px;
}

.rs-section__head h2,
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.rs-section__head p,
.section-header p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.rs-section__head--center,
.section-header[style*="center"] {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.rs-section__head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.rs-section__head--row h2 { margin-bottom: 0; }

.rs-section__head--light h2,
.rs-section--navy h2,
.section-header--light h2 {
  color: #FFFFFF;
}

.rs-section__head--light p,
.rs-section--navy p,
.section-header--light p {
  color: rgba(255, 255, 255, 0.75);
}

.rs-headline {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ---------- Header: navy utility band ---------- */
/* Mirrors the R&S header: a navy band holding the logo and utilities, with
   the main menu on a white bar beneath it. */
.rs-header {
  position: relative;
  z-index: 50;
}

.rs-topbar {
  background-color: var(--bg-dark);
  background-image: var(--stripe);
}

.rs-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.rs-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.rs-logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
}

.rs-topbar__utils {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.rs-util {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
}

.rs-util i {
  font-size: 17px;
  color: var(--accent-on-dark);
}

.rs-util:hover {
  color: #FFFFFF !important;
}

.rs-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent) !important;
  font-family: var(--font-head) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: var(--transition);
}

.rs-support-btn i { font-size: 16px; }

.rs-support-btn:hover,
.rs-support-btn.active {
  background: transparent;
  color: var(--accent-on-dark) !important;
}

/* Language switcher lives in the navy band. */
.language-switcher {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.lang-selector {
  display: flex;
  gap: 4px;
}

.lang-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: var(--font-head) !important;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
  line-height: 1;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none !important;
  transition: var(--transition);
}

.lang-btn:hover {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent) !important;
}

/* ---------- Header: white menu bar ---------- */
.rs-navbar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

/* main.js adds .sticky past 245px of scroll; the legacy rule in
   shortcode/header.css fixes it to the top with a fade in. */
.rs-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: var(--shadow-md);
}

.rs-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.rs-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 0 -16px;
  padding: 0;
  list-style: none;
}

.rs-nav li a {
  display: block;
  padding: 18px 16px 15px;
  border-bottom: 3px solid transparent;
  font-family: var(--font-head) !important;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-primary) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: var(--transition);
}

.rs-nav li a:hover,
.rs-nav li.active > a {
  color: var(--accent-text) !important;
  border-bottom-color: var(--accent);
}

.rs-nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -12px;
  color: var(--text-primary) !important;
  font-size: 18px;
}

.rs-nav-search:hover {
  color: var(--accent-text) !important;
}

/* ---------- Footer ---------- */
.rs-footer {
  background-color: var(--bg-dark);
  background-image: var(--stripe);
  color: rgba(255, 255, 255, 0.78);
  padding: 0 0 28px;
}

.rs-footer__social {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 34px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.rs-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #FFFFFF !important;
  font-size: 20px;
  transition: var(--transition);
}

.rs-footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent-on-dark) !important;
}

.rs-footer__cols {
  padding: 48px 0 20px;
}

.rs-footer h6 {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF !important;
  margin-bottom: 16px;
}

.rs-footer p,
.rs-footer li,
.rs-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.rs-footer a:hover {
  color: var(--accent-on-dark) !important;
}

.rs-footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}

.rs-footer__logo img {
  display: block;
  height: 44px;
  width: auto;
}

.rs-footer__about {
  max-width: 340px;
  margin-bottom: 0;
}

.rs-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rs-footer .quick-link li,
.rs-footer__posts li {
  padding: 4px 0;
}

.rs-footer__posts a {
  display: block;
}

.rs-footer__posts span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.rs-footer .contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.rs-footer .contact-details li a {
  color: var(--accent-on-dark) !important;
  font-size: 17px;
  line-height: 1.4;
  margin-top: 1px;
}

.rs-footer .contact-details p {
  margin: 0;
  overflow-wrap: anywhere;
}

.rs-footer .newsletter {
  margin-top: 26px;
}

.rs-footer .newsletter > p {
  font-size: 14px;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form .form-control {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-right: none !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  border-color: var(--accent) !important;
  outline: none;
}

.mc-submit {
  height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-head) !important;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.mc-submit:hover {
  background: transparent;
  color: var(--accent-on-dark);
}

#nl-captcha-row .form-control {
  height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.28) !important;
}

#nl-captcha-row .mc-submit {
  height: 34px;
  padding: 0 12px;
}

.rs-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.rs-footer__meta p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.rs-footer__meta nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.rs-footer__meta nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Home: stage ---------- */
/* Edge to edge split stage: photo on the left, navy panel with the headline
   on the right, as on the R&S home page. */
.rs-stage {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 470px;
  background: var(--bg-dark);
}

.rs-stage__media {
  position: relative;
  overflow: hidden;
}

.rs-stage__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rs-stage__panel {
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  background-image: var(--stripe);
}

.rs-stage__content {
  padding: 60px 64px 60px 56px;
  max-width: 640px;
}

.rs-stage__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.rs-stage__title span {
  display: block;
  color: var(--accent-on-dark);
  font-weight: 400;
}

.rs-stage__sub {
  font-family: var(--font-head) !important;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

/* ---------- Home: intro statement and link list ---------- */
.rs-intro h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}

.rs-intro p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}

.rs-linklist {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.rs-linklist li {
  border-bottom: 1px solid var(--border);
}

.rs-linklist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px;
  font-family: var(--font-head) !important;
  font-size: 19px;
  font-weight: 400;
  color: var(--accent-text) !important;
  text-decoration: none !important;
  transition: var(--transition);
}

.rs-linklist a::after {
  content: '\f105';
  font-family: FontAwesome !important;
  font-size: 16px;
}

.rs-linklist a:hover {
  color: var(--accent-text-hover) !important;
  padding-left: 8px;
}

/* ---------- Home: facts row ---------- */
.rs-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rs-fact {
  padding: 8px 28px 8px 24px;
  border-left: 1px solid var(--border);
}

.rs-fact:last-child {
  border-right: 1px solid var(--border);
}

.rs-fact i {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
}

.rs-fact h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}

.rs-fact p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Home: spotlight tiles ---------- */
.rs-spotlight {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.rs-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 270px;
  background: var(--bg-dark);
  text-decoration: none !important;
}

.rs-tile--tall {
  grid-row: 1 / 3;
  min-height: 556px;
}

.rs-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.rs-tile:hover img {
  transform: scale(1.04);
}

.rs-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 46, 0.05) 0%, rgba(15, 27, 46, 0.35) 45%, rgba(15, 27, 46, 0.9) 100%);
}

.rs-tile__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 30px 30px;
}

.rs-tile__text h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.rs-tile--tall .rs-tile__text h3 {
  font-size: 36px;
}

.rs-tile__text p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  max-width: 520px;
}

/* ---------- Teaser cards (services grid) ---------- */
.rs-teasers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.rs-teasers--3 {
  grid-template-columns: repeat(3, 1fr);
}

.rs-teaser {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 26px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  text-decoration: none !important;
  transition: var(--transition);
}

.rs-teaser:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.rs-teaser i {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
}

.rs-teaser h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.rs-teaser p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rs-teaser .rs-arrow-link {
  margin-top: auto;
}

/* ---------- Home: text and photo split ---------- */
.rs-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}

.rs-split__text h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}

.rs-split__text p {
  font-size: 16px;
  line-height: 1.7;
}

.rs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.rs-split__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ---------- Plain white cards on a band ---------- */
.rs-cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rs-card-plain {
  padding: 30px 28px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
}

.rs-card-plain i {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
}

.rs-card-plain h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}

.rs-card-plain p {
  font-size: 15px;
  margin: 0;
}

/* ---------- Home: process steps ---------- */
.rs-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rs-steps li {
  padding: 8px 24px;
  border-left: 1px solid var(--border);
}

.rs-steps li:last-child {
  border-right: 1px solid var(--border);
}

.rs-steps__num {
  display: block;
  font-family: var(--font-head) !important;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-text);
  margin-bottom: 14px;
}

.rs-steps li i {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.rs-steps h5 {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

/* ---------- Image cards (insights) ---------- */
.rs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rs-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  text-decoration: none !important;
  transition: var(--transition);
}

.rs-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.rs-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-gray);
}

.rs-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.rs-card:hover .rs-card__img img {
  transform: scale(1.04);
}

.rs-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 26px;
}

.rs-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.rs-card h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.rs-card .rs-arrow-link {
  margin-top: auto;
}

/* ---------- Home: technology stack ---------- */
.stack-categories {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.stack-category h6 {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
  margin-bottom: 12px !important;
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stack-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-gray);
  border: 1px solid transparent;
  transition: var(--transition);
}

.stack-item:hover {
  background: #FFFFFF;
  border-color: var(--accent);
}

.stack-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.stack-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ---------- Full bleed contact stage ---------- */
.rs-cta-stage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  background: var(--bg-dark);
}

.rs-cta-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-cta-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 27, 46, 0.94) 0%, rgba(15, 27, 46, 0.72) 50%, rgba(15, 27, 46, 0.35) 100%);
}

.rs-cta-stage .container {
  position: relative;
  z-index: 2;
}

.rs-cta-stage__content {
  max-width: 640px;
  padding: 70px 0;
}

.rs-cta-stage h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.rs-cta-stage p {
  font-family: var(--font-head) !important;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

/* ---------- Inner page banner ---------- */
/* A short photo stage with the navy gradient rolling in from the left. The
   legacy .bg-7 / .overlay-2 classes stay in the markup for the support
   templates but are neutralised here. */
.banner-area {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 0 !important;
  overflow: hidden;
  background-color: var(--bg-dark) !important;
  background-image: var(--stripe) !important;
}

.banner-area::before {
  display: none !important;
}

.banner-area::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 27, 46, 0.94) 0%, rgba(15, 27, 46, 0.72) 55%, rgba(15, 27, 46, 0.45) 100%);
}

.banner-area > img {
  position: absolute;
  inset: 0;
  z-index: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-area .container {
  position: relative;
  z-index: 2;
}

.banner-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 60px 0;
}

.banner-page h1 {
  order: 2;
  font-size: 46px !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  color: #FFFFFF !important;
  margin: 0 !important;
  text-align: left !important;
}

.banner-breadcrumb {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.banner-breadcrumb a,
.banner-breadcrumb .sep,
.banner-breadcrumb .current {
  font-family: var(--font-head) !important;
}

.banner-breadcrumb a {
  color: var(--accent-on-dark) !important;
}

.banner-breadcrumb a:hover {
  color: #FFFFFF !important;
}

.banner-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.5);
}

.banner-breadcrumb .current {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Legacy section titles ---------- */
.section-title h1,
.section-title h4,
.section-title h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--text-primary) !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
}

.section-title h1::before,
.section-title h1::after,
.section-title h4::before,
.section-title h4::after {
  display: none !important;
}

.section-title p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto;
}

.section-title.text-left p {
  margin-left: 0;
}

.text-white .section-title h1,
.section-title.text-white h1,
.section-title.text-white h4 {
  color: #FFFFFF !important;
}

.section-title.text-white p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Services page ---------- */
.service-area {
  background: #FFFFFF !important;
  border-top: none !important;
}

.service-area .rs-teasers {
  padding-top: 44px;
}

.wework-area {
  background-color: var(--bg-dark) !important;
  background-image: var(--stripe) !important;
  padding: 72px 0 !important;
}

.wework-area::before {
  display: none !important;
}

.rs-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 44px;
}

.rs-reason {
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.rs-reason i {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--accent-on-dark);
  margin-bottom: 16px;
}

.rs-reason h3 {
  font-size: 26px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.rs-reason p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ---------- Service detail ---------- */
.service-description h1,
.service-description h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 18px;
}

.service-description h3 {
  font-size: 28px;
  margin: 34px 0 12px;
}

.service-description h4 {
  font-size: 22px;
  margin: 26px 0 10px;
}

.service-description p,
.service-description li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.service-description ul,
.service-description ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.service-description li {
  margin-bottom: 6px;
}

.service-description .lead,
.service-detail-content .lead,
.service-description > p:first-of-type {
  font-family: var(--font-head) !important;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-primary);
}

.service-description table,
.discribe-text table,
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}

.service-description th,
.service-description td,
.discribe-text th,
.discribe-text td,
.legal-content th,
.legal-content td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.service-description th,
.discribe-text th,
.legal-content th {
  background: var(--bg-gray);
  font-weight: 700;
}

.service-description blockquote,
.discribe-text blockquote {
  margin: 24px 0;
  padding: 6px 0 6px 20px;
  border-left: 3px solid var(--accent);
}

.service-description blockquote p,
.discribe-text blockquote p {
  font-family: var(--font-head) !important;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
}

.service-description img,
.discribe-text img {
  max-width: 100%;
  height: auto;
  margin: 12px 0 20px;
}

.widget {
  padding: 24px;
  margin-bottom: 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
}

.widget-title h6 {
  font-size: 22px !important;
  font-weight: 400;
  margin-bottom: 12px !important;
}

.widget .quick-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget .quick-link li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.widget .quick-link li:last-child {
  border-bottom: none;
}

.widget .quick-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-primary);
}

.widget .quick-link a i {
  width: 18px;
  text-align: center;
  color: var(--accent);
}

.widget .quick-link a:hover {
  color: var(--accent-text);
}

.cta-widget {
  background: var(--bg-gray);
  border-color: var(--bg-gray);
}

.cta-widget h6 {
  font-size: 24px !important;
  font-weight: 400;
  margin-bottom: 8px !important;
}

.cta-widget p {
  font-size: 15px;
  margin-bottom: 18px;
}

/* ---------- Service FAQ ---------- */
.service-faq {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.service-faq h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-faq .faq-list {
  margin: 0;
}

.service-faq .faq-list dt {
  font-family: var(--font-head) !important;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.service-faq .faq-list dt:first-child {
  margin-top: 0;
}

.service-faq .faq-list dd {
  margin: 8px 0 0 21px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- About page ---------- */
.about-hero-section {
  padding: 72px 0;
  background: #FFFFFF;
}

.about-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about-hero-content {
  padding-left: 24px;
}

.about-hero-content h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-hero-content p {
  font-size: 16px;
  line-height: 1.7;
}

.about-vision-section {
  padding: 72px 0;
  background: var(--bg-gray);
}

.about-vision-card {
  height: 100%;
  padding: 34px 32px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
}

.about-vision-icon {
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
}

.about-vision-card h4 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}

.about-vision-card p {
  font-size: 15px;
  margin: 0;
}

.about-edge-section {
  padding: 72px 0;
  background: #FFFFFF;
}

.about-edge-box,
.about-methodology-box {
  padding: 56px 48px;
  background-color: var(--bg-dark);
  background-image: var(--stripe);
}

.about-edge-box h2,
.about-methodology-box h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.about-edge-box p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.about-services-section {
  padding: 72px 0;
  background: var(--bg-gray);
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.about-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  text-align: center;
  text-decoration: none !important;
  transition: var(--transition);
}

.about-service-item:hover {
  border-color: var(--accent);
}

.about-service-item i {
  font-size: 26px;
  color: var(--accent);
}

.about-service-item h6 {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--text-primary) !important;
  margin: 0 !important;
}

.about-values-section {
  padding: 72px 0;
  background: #FFFFFF;
}

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

.about-value-card {
  padding: 8px 28px 8px 24px;
  border-left: 1px solid var(--border);
}

.about-value-card:last-child {
  border-right: 1px solid var(--border);
}

.about-value-number {
  font-family: var(--font-head) !important;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-text);
  margin-bottom: 14px;
}

.about-value-card h5 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 15px;
  margin: 0;
}

.about-methodology-section {
  padding: 72px 0;
  background: var(--bg-gray);
}

.about-methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-methodology-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.about-methodology-step > span {
  flex: 0 0 44px;
  font-family: var(--font-head) !important;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-on-dark);
}

.about-methodology-step h6 {
  font-size: 20px !important;
  font-weight: 400;
  color: #FFFFFF !important;
  margin-bottom: 4px !important;
}

.about-methodology-step p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 !important;
}

.about-cta-section {
  padding: 72px 0;
  background: #FFFFFF;
}

.about-cta-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-box h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-cta-box p {
  font-size: 17px;
  margin-bottom: 26px;
}

/* ---------- Forms ---------- */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px 16px !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  background: #FFFFFF !important;
  color: var(--text-primary) !important;
  font-size: 15px !important;
  line-height: 1.5;
  box-shadow: none !important;
  transition: var(--transition);
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-light) !important;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-single,
.form-textarea {
  margin-bottom: 16px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 22px;
  padding: 12px 16px;
  background: var(--bg-gray);
}

.captcha-label {
  font-size: 15px;
  color: var(--text-secondary);
  white-space: nowrap;
  margin: 0;
}

.captcha-label strong {
  color: var(--accent-text);
  font-size: 16px;
}

.captcha-input {
  width: 72px !important;
  padding: 8px 10px !important;
  text-align: center;
  font-weight: 700;
  margin: 0 !important;
}

.form-messege {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
}

.form-messege.success { color: #059669 !important; }
.form-messege.error { color: #DC2626 !important; }

/* ---------- Contact page ---------- */
.contact-section {
  padding: 72px 0;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1px solid var(--border-light);
}

.contact-form-box {
  padding: 48px 44px;
  background: #FFFFFF;
}

.contact-form-box h4 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 15px;
  margin-bottom: 28px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  background-color: var(--bg-dark);
  background-image: var(--stripe);
}

.contact-info-box h4 {
  font-size: 32px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.contact-info-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65) !important;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent);
  color: var(--accent-on-dark);
  font-size: 18px;
}

.contact-info-item h6 {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 0 4px !important;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: #FFFFFF !important;
  margin: 0;
}

.contact-info-item a:hover {
  color: var(--accent-on-dark) !important;
}

.contact-info-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-info-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #FFFFFF !important;
  font-size: 15px;
}

.contact-info-social a:hover {
  border-color: var(--accent);
  color: var(--accent-on-dark) !important;
}

.contact-map-section {
  padding: 0 0 72px;
  background: #FFFFFF;
}

.contact-map-wrap {
  border: 1px solid var(--border-light);
}

.contact-map-wrap iframe {
  display: block;
}

/* ---------- Blog list ---------- */
.blog-area {
  padding: 72px 0 !important;
}

.single-blog {
  display: flex;
  flex-direction: column;
  height: calc(100% - 24px);
  margin-bottom: 24px !important;
  padding: 0 !important;
  background: #FFFFFF;
  border: 1px solid var(--border-light) !important;
  transition: var(--transition);
}

.single-blog:hover {
  border-color: var(--accent) !important;
  box-shadow: var(--shadow-md);
}

.single-blog > h6 {
  order: 2;
  margin: 0;
  padding: 22px 26px 0;
}

.single-blog > h6 a {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary) !important;
}

.single-blog > h6 a:hover {
  color: var(--accent-text) !important;
}

.single-blog .blog-img {
  order: 1;
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: none;
  overflow: hidden;
  background: var(--bg-gray);
}

.single-blog .blog-img::before,
.single-blog .blog-img::after,
.single-blog .blog-img a::before,
.single-blog .blog-img a::after {
  display: none !important;
}

.single-blog .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-blog .blog-content {
  order: 3;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 26px 24px;
}

.single-blog .post-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  flex: 1;
}

.single-blog .post-content {
  order: 0;
  flex-basis: 100%;
}

.single-blog .post-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0 14px;
}

.single-blog .post-date {
  order: 1;
  margin: 0 !important;
  align-self: flex-end;
}

.single-blog .post-date a {
  font-size: 13px;
  color: var(--text-muted) !important;
}

.single-blog .post-date i {
  margin-right: 6px;
}

.single-blog .post-btn {
  order: 2;
  margin-left: auto;
  float: none !important;
  align-self: flex-end;
}

.pagination-count {
  margin-top: 24px !important;
  padding: 12px !important;
  background: #FFFFFF;
  border: 1px solid var(--border-light) !important;
}

.pagination-count ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-count ul li {
  margin: 0 !important;
}

.pagination-count ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  font-family: var(--font-head) !important;
  font-size: 16px;
  color: var(--text-primary) !important;
  background: #FFFFFF !important;
}

.pagination-count ul li a:hover,
.pagination-count ul li a.active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--on-accent) !important;
}

/* ---------- Blog details ---------- */
.blog-details-area {
  padding: 72px 0 !important;
}

.blog-details-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 56px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
}

.blogdetails-titel span {
  font-family: var(--font-head) !important;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
}

.blogdetails-titel h4 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  margin: 8px 0 24px;
}

.blog-details-content .blogdetails-img {
  max-width: none;
  max-height: none;
  margin: 0 0 28px;
  border-radius: 0 !important;
}

.blog-details-content .blogdetails-img img {
  max-height: 480px;
}

.discribe-text p,
.discribe-text li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.discribe-text h2 {
  font-size: 32px;
  margin: 36px 0 14px;
}

.discribe-text h3 {
  font-size: 26px;
  margin: 30px 0 12px;
}

.discribe-text h4 {
  font-size: 22px;
  margin: 24px 0 10px;
}

.discribe-text ul,
.discribe-text ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.discribe-text li {
  margin-bottom: 6px;
}

.blog-social {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.blog-social p {
  margin: 0;
  font-size: 14px;
}

.comments-box {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.comments-box .section-title h4 {
  font-size: 28px !important;
  font-weight: 400 !important;
  margin-bottom: 18px !important;
}

.comment-single-box {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.comment-single-box.pl-50 {
  padding-left: 50px;
}

.comment-pic img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.comment-content {
  flex: 1;
}

.comment-author {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.comment-author h3 {
  font-size: 20px;
  margin: 0;
}

.comment-author p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.comment-author a {
  display: none;
}

.comment-dis p {
  font-size: 15px;
  margin: 6px 0 0;
}

.comment-form .form-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* ---------- Search page ---------- */
.search-results-area {
  padding: 72px 0 !important;
}

.search-page-form .input-group {
  display: flex;
  border: 1px solid var(--border);
  background: #FFFFFF;
  transition: var(--transition);
}

.search-page-form .input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.search-page-input {
  flex: 1 1 auto;
  min-width: 0;
  border: none !important;
  padding: 14px 18px !important;
  font-size: 16px !important;
  box-shadow: none !important;
}

.search-page-input:focus {
  box-shadow: none !important;
}

.search-page-btn {
  min-width: 0;
  padding: 0 24px;
  border: none;
}

.search-result-count {
  font-size: 15px;
  color: var(--text-secondary);
}

.search-result-item {
  padding: 24px 26px;
  margin-bottom: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.search-result-item:hover {
  border-color: var(--accent);
}

.search-result-type {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-head) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-text);
}

.search-result-title {
  margin-bottom: 6px !important;
}

.search-result-title a {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary) !important;
}

.search-result-title a:hover {
  color: var(--accent-text) !important;
}

.search-result-snippet {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
  margin: 0 !important;
}

.pagination-area .pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-area .pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-family: var(--font-head) !important;
  font-size: 16px;
  color: var(--text-primary) !important;
}

.pagination-area .pagination li.active a,
.pagination-area .pagination li a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent) !important;
}

.no-results-message {
  padding: 60px 20px;
}

.no-results-message i {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.no-results-message h4 {
  margin-bottom: 10px;
}

.no-results-message p {
  margin-bottom: 20px;
}

.no-results-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- 404 ---------- */
.four-zero-four {
  padding: 72px 0 !important;
}

.four-zero-content h2 {
  font-size: 40px;
  font-weight: 400;
}

.four-zero-content h2 span {
  display: block;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-text);
  margin-bottom: 8px;
}

.four-zero-content p {
  font-size: 17px;
  margin: 12px 0 26px;
}

/* ---------- Legal pages ---------- */
.legal-content,
.privacy-content,
.terms-content {
  max-width: 900px;
}

.legal-content h2,
.privacy-content h2,
.terms-content h2 {
  font-size: 30px;
  margin: 36px 0 14px;
}

.legal-content h3,
.privacy-content h3,
.terms-content h3 {
  font-size: 24px;
  margin: 28px 0 10px;
}

.legal-content p,
.legal-content li,
.privacy-content p,
.privacy-content li,
.terms-content p,
.terms-content li {
  font-size: 16px;
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol,
.privacy-content ul,
.privacy-content ol,
.terms-content ul,
.terms-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

/* ---------- Flash messages ---------- */
.site-alerts {
  margin-top: 24px;
  margin-bottom: 4px;
}

.site-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-left: 3px solid var(--accent);
  background: var(--accent-light);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
}

.site-alert-icon {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1.4;
  color: var(--accent-text);
}

.site-alert-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-alert-close {
  flex: 0 0 auto;
  background: none;
  border: none;
  padding: 0 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
  color: currentColor;
  opacity: 0.45;
  cursor: pointer;
  transition: var(--transition);
}

.site-alert-close:hover { opacity: 1; }

.site-alert-success {
  background: #ECFDF5;
  border-left-color: #059669;
  color: #065F46;
}
.site-alert-success .site-alert-icon { color: #059669; }

.site-alert-error {
  background: #FEF2F2;
  border-left-color: #DC2626;
  color: #991B1B;
}
.site-alert-error .site-alert-icon { color: #DC2626; }

.site-alert-warning {
  background: var(--accent-tint);
  border-left-color: var(--accent);
  color: var(--accent-text-hover);
}

.site-alert-info {
  background: #EEF2F7;
  border-left-color: var(--bg-dark);
  color: var(--text-primary);
}
.site-alert-info .site-alert-icon { color: var(--bg-dark); }

.alert {
  border-radius: 0 !important;
  font-size: 14px;
  border: none !important;
}

.alert-success {
  background: #ECFDF5 !important;
  color: #065F46 !important;
}

.alert-error {
  background: #FEF2F2 !important;
  color: #991B1B !important;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  z-index: 100000;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 14px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ---------- Small fixes ---------- */
.rs-btn > span,
.rs-support-btn > span,
.rs-nav a > span,
.rs-arrow-link > span {
  font-family: inherit !important;
}

.rs-footer .contact-details li > i {
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 17px;
  color: var(--accent-on-dark);
}

.legal-content {
  padding: 40px 48px;
  border: 1px solid var(--border-light);
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* Support portal buttons keep their own hover treatment. */
.support-portal-bar {
  border-radius: 0 !important;
}

/* Prevent horizontal overflow globally. */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.wrapper,
main,
section,
footer {
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6, p, a, li, td, th, span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ---------- Mobile menu (meanmenu) ---------- */
/* meanmenu (kick in at 767px, see main.js) moves #mobile-nav into a
   .mean-bar that it prepends to .mobile-menu-area .container. The bar is
   restyled as a white strip under the navy band with a navy hamburger. */
.mobile-menu-area {
  display: none;
}

@media (max-width: 767px) {
  .rs-navbar {
    display: none;
  }

  .mobile-menu-area,
  .mean-container {
    display: flow-root;
  }

  .mobile-menu-area {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
  }

  .mean-container > .row {
    clear: both;
  }

  .mean-container .mean-bar {
    float: none;
    position: relative;
    min-height: 50px;
    padding: 0 !important;
    background: #FFFFFF !important;
  }

  .mean-container a.meanmenu-reveal {
    width: 24px;
    height: 24px;
    padding: 14px 15px 12px !important;
    color: var(--text-primary) !important;
  }

  .mean-container a.meanmenu-reveal span {
    height: 2px;
    margin-top: 6px;
    background: var(--text-primary) !important;
  }

  .mean-container .mean-nav {
    background: #FFFFFF !important;
    border-top: 1px solid var(--border-light);
  }

  .mean-container .mean-nav ul li {
    background: #FFFFFF !important;
    border-top: 1px solid var(--border-light) !important;
  }

  .mean-container .mean-nav ul li a {
    width: 90%;
    padding: 14px 5% !important;
    background: #FFFFFF !important;
    font-family: var(--font-head) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    color: var(--text-primary) !important;
  }

  .mean-container .mean-nav ul li a:hover,
  .mean-container .mean-nav ul li.active > a {
    color: var(--accent-text) !important;
  }

  .mean-nav .mobile-support-link,
  #mobile-nav .mobile-support-link {
    width: 90% !important;
    margin: 10px 5% 12px;
    text-align: center;
    background: var(--accent) !important;
    color: var(--on-accent) !important;
    font-weight: 700 !important;
    border-top: none !important;
  }

  .mean-nav .mobile-support-link i {
    margin-right: 6px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1399px) {
  .rs-stage__content {
    padding: 52px 48px 52px 48px;
  }

  .rs-stage__title {
    font-size: 42px;
  }
}

@media (max-width: 1199px) {
  .rs-nav li a {
    padding: 18px 12px 15px;
    font-size: 16px;
  }

  .rs-teasers {
    grid-template-columns: repeat(3, 1fr);
  }

  .rs-stage__title {
    font-size: 38px;
  }

  .rs-stage__sub {
    font-size: 21px;
  }

  .rs-stage__content {
    padding: 44px 40px;
  }

  .rs-tile--tall .rs-tile__text h3 {
    font-size: 32px;
  }

  .rs-steps li {
    padding: 8px 18px;
  }

  .rs-steps h5 {
    font-size: 20px;
  }

  .rs-topbar__utils {
    gap: 16px;
  }

  .language-switcher {
    padding-left: 14px;
  }
}

@media (max-width: 991px) {
  .rs-stage {
    grid-template-columns: 1fr;
  }

  .rs-stage__media {
    min-height: 320px;
  }

  .rs-stage__content {
    max-width: none;
    padding: 44px 32px;
  }

  .rs-intro .rs-linklist {
    margin-top: 32px;
  }

  .rs-intro h2 {
    font-size: 34px;
  }

  .rs-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .rs-fact:nth-child(2n) {
    border-right: 1px solid var(--border);
  }

  .rs-spotlight {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .rs-tile,
  .rs-tile--tall {
    grid-row: auto;
    min-height: 320px;
  }

  .rs-teasers,
  .rs-teasers--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rs-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rs-split__media {
    order: -1;
  }

  .rs-cards3,
  .rs-cards,
  .rs-reasons {
    grid-template-columns: repeat(2, 1fr);
  }

  .rs-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }

  .rs-steps li:last-child {
    border-right: none;
  }

  .rs-cta-stage h2,
  .banner-page h1 {
    font-size: 38px !important;
  }

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

  .about-hero-content {
    padding-left: 0;
    margin-top: 28px;
  }

  .about-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-value-card,
  .about-value-card:last-child {
    border-right: none;
  }

  .about-edge-box .col-lg-7,
  .about-methodology-box .col-lg-7 {
    margin-top: 24px;
  }

  .blog-details-content {
    padding: 36px 32px;
  }

  .legal-content {
    padding: 32px 28px;
  }
}

@media (max-width: 767px) {
  .rs-section,
  .rs-band,
  .rs-section--navy,
  .ptb-100,
  .service-area,
  .wework-area,
  .about-hero-section,
  .about-vision-section,
  .about-edge-section,
  .about-services-section,
  .about-values-section,
  .about-methodology-section,
  .about-cta-section,
  .contact-section,
  .blog-area,
  .blog-details-area,
  .search-results-area,
  .four-zero-four {
    padding: 48px 0 !important;
  }

  .rs-band--tight {
    padding: 24px 0 48px !important;
  }

  .rs-section--flush-top {
    padding-top: 0 !important;
  }

  .contact-map-section {
    padding: 0 0 48px;
  }

  .rs-topbar__inner {
    min-height: 62px;
    gap: 12px;
  }

  .rs-logo img {
    height: 40px;
  }

  .rs-topbar__utils {
    gap: 12px;
  }

  .rs-util span {
    display: none;
  }

  .rs-util i {
    font-size: 20px;
  }

  .language-switcher {
    padding-left: 12px;
  }

  .rs-support-btn {
    padding: 8px 12px;
  }

  .rs-support-btn span {
    display: none;
  }

  .rs-stage__media {
    min-height: 230px;
  }

  .rs-stage__content {
    padding: 36px 24px;
  }

  .rs-stage__title {
    font-size: 32px;
  }

  .rs-stage__sub {
    font-size: 19px;
  }

  .rs-intro h2 {
    font-size: 30px;
  }

  .rs-intro p {
    font-size: 16px;
  }

  .rs-section__head h2,
  .section-header h2,
  .section-title h1,
  .section-title h4,
  .rs-headline,
  .rs-split__text h2,
  .about-hero-content h2,
  .about-edge-box h2,
  .about-methodology-box h2,
  .about-cta-box h2,
  .contact-form-box h4,
  .contact-info-box h4 {
    font-size: 30px !important;
  }

  .rs-facts {
    grid-template-columns: 1fr;
    gap: 22px 0;
  }

  .rs-fact,
  .rs-fact:nth-child(2n),
  .rs-fact:last-child {
    border-right: none;
  }

  .rs-tile,
  .rs-tile--tall {
    min-height: 260px;
  }

  .rs-tile__text {
    padding: 22px 22px 24px;
  }

  .rs-tile__text h3,
  .rs-tile--tall .rs-tile__text h3 {
    font-size: 26px;
  }

  .rs-teasers,
  .rs-teasers--3,
  .rs-cards3,
  .rs-cards,
  .rs-reasons {
    grid-template-columns: 1fr;
  }

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

  .rs-cta-stage {
    min-height: 380px;
  }

  .rs-cta-stage__content {
    padding: 52px 0;
  }

  .rs-cta-stage h2,
  .banner-page h1 {
    font-size: 32px !important;
  }

  .rs-cta-stage p {
    font-size: 18px;
  }

  .banner-area {
    min-height: 220px;
  }

  .banner-page {
    padding: 40px 0;
  }

  .rs-footer__social {
    gap: 16px;
    padding: 26px 0 22px;
  }

  .rs-footer__social a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .rs-footer__cols {
    padding: 36px 0 8px;
  }

  .rs-footer__cols > div {
    margin-bottom: 28px;
  }

  .rs-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 32px 24px;
  }

  .captcha-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-map-wrap iframe {
    height: 280px !important;
  }

  .about-edge-box,
  .about-methodology-box {
    padding: 32px 24px;
  }

  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .blog-details-content {
    padding: 24px 20px;
  }

  .blogdetails-titel h4 {
    font-size: 30px;
  }

  .legal-content {
    padding: 24px 18px;
  }

  .widget {
    margin-top: 8px;
  }

  .stack-item {
    padding: 8px 12px;
  }

  .stack-item img {
    width: 20px;
    height: 20px;
  }

  .stack-item span {
    font-size: 13px;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .site-alert {
    padding: 14px 16px;
    font-size: 14px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .rs-steps {
    grid-template-columns: 1fr;
  }

  .rs-steps li:last-child {
    border-right: none;
  }

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

  .rs-actions .rs-btn,
  .rs-stage .rs-btn,
  .rs-cta-stage .rs-btn {
    width: 100%;
  }

  .search-page-form .input-group {
    flex-direction: column;
  }

  .search-page-btn {
    padding: 12px;
  }

  .rs-topbar__utils {
    gap: 8px;
  }

  .language-switcher {
    padding-left: 8px;
  }
}

/* ---------- Legacy overrides ---------- */
/* default.css sets `li { display: inline-block }` globally. */
.rs-linklist li,
.rs-footer__posts li,
.rs-footer .quick-link li,
.widget .quick-link li,
.service-description li,
.discribe-text li,
.legal-content li,
.faq-list dt,
.faq-list dd {
  display: block;
}

.rs-steps li,
.rs-nav li,
.pagination-count ul li,
.pagination-area .pagination li {
  display: list-item;
}

/* style.css turns .contact-details links into rotated icon boxes. */
.rs-footer .contact-details ul li a {
  display: inline;
  float: none;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  line-height: inherit;
  text-align: left;
  transform: none;
  font-size: 15px;
}

.rs-footer .contact-details ul li:hover a {
  background: none;
  color: var(--accent-on-dark);
}

.rs-footer .contact-details p {
  color: rgba(255, 255, 255, 0.78);
  overflow: visible;
}

/* style.css draws a square bullet before quick links. */
.quick-link ul li a {
  padding-left: 0 !important;
  font-family: var(--font-main) !important;
}

.quick-link ul li a::after {
  display: none !important;
}

/* default.css squeezes .section-title p with 20% side padding. */
.section-title p {
  padding: 0 !important;
  width: auto !important;
}

/* Blog details: drop the gold date badge, the shadowed narrow column and
   the oversized paddings from style.css. */
.blogdetails-titel {
  flex-direction: column;
  align-items: flex-start !important;
  gap: 8px !important;
  margin-bottom: 26px !important;
}

.blogdetails-titel > span {
  background: none !important;
  color: var(--accent-text) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-family: var(--font-head) !important;
  font-size: 15px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4 !important;
}

.blogdetails-titel > h4 {
  flex: 1 1 auto;
  font-size: 40px !important;
  line-height: 1.15 !important;
}

.blog-discribe-area {
  padding: 0 !important;
}

.dicrobe-content {
  padding: 0 !important;
  box-shadow: none !important;
}

.dicrobe-content blockquote {
  background: none !important;
  border-left: 3px solid var(--accent) !important;
  margin: 24px 0 !important;
  padding: 6px 0 6px 20px !important;
}

/* Search: keep the result count aligned with the centred column. */
@media (min-width: 992px) {
  .search-results-area .search-result-count {
    margin-left: 16.6667%;
  }
}

/* Hide the raw mobile nav until meanmenu has moved it into its bar. */
.mobile-menu > nav#mobile-nav {
  display: none;
}

@media (max-width: 767px) {
  .blogdetails-titel > h4 {
    font-size: 30px !important;
  }
}

/* ---------- 2026-08-30: footer 5 columns, company facts ---------- */
.rs-footer .newsletter { margin-top: 22px; }
.rs-footer__services ul { columns: 1; }
.rs-footer__services li a { display: block; line-height: 1.45; padding: 2px 0; }
.rs-footer__label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}
.rs-footer .contact-details p { word-break: break-word; }
.rs-footer__rss { font-size: 13px !important; color: rgba(255, 255, 255, 0.55) !important; }
@media (min-width: 992px) and (max-width: 1199px) {
  .rs-footer p, .rs-footer li, .rs-footer a { font-size: 14px; }
}

/* ---------- FAQ hub ---------- */
.faq-page .section-title p { padding: 0; max-width: 720px; margin: 0 auto 10px; }
.faq-index {
  position: sticky;
  top: 90px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light, #e5e7eb);
  padding: 26px 26px 28px;
  margin-bottom: 40px;
}
.faq-index h6 {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.faq-index ul { list-style: none; margin: 0 0 22px; padding: 0; }
.faq-index li { display: block; border-top: 1px solid var(--border-light, #e5e7eb); }
.faq-index li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 15px;
  color: var(--text-secondary);
}
.faq-index li a:hover { color: var(--accent-text); }
.faq-index li a span {
  flex: 0 0 auto;
  min-width: 26px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  background: var(--accent-light);
  color: var(--accent-text);
  padding: 2px 6px;
}
.faq-index__cta p { margin: 0 0 12px; font-size: 14px; color: var(--text-muted); }
.faq-index__cta .rs-btn { display: inline-block; margin-bottom: 12px; }
.faq-index__cta .rs-arrow-link { display: block; font-size: 14px; }
.faq-group { margin-bottom: 44px; scroll-margin-top: 100px; }
.faq-group__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}
.faq-group__head i { font-size: 30px; color: var(--accent-text); line-height: 1; margin-top: 4px; }
.faq-group__head h3 { font-size: 24px; margin: 0 0 4px; color: var(--text-primary); }
.faq-group__head .rs-arrow-link { font-size: 14px; }
.faq-group .faq-list dt {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  padding: 16px 0 6px;
}
.faq-group .faq-list dd {
  margin: 0;
  padding: 0 0 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-bottom: 1px solid var(--border-light, #e5e7eb);
}
.faq-group .faq-list dd:last-child { border-bottom: 0; }
@media (max-width: 991px) {
  .faq-index { position: static; }
}
