/* Rcc India - Atradius-style theme with Rcc India logo colors */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Rcc India Logo Colors */
  --rcc-blue-light: #3d8fd9;
  --rcc-blue: #1a6fc4;
  --rcc-blue-dark: #0d3b7a;
  --rcc-blue-deep: #082a5c;
  --rcc-green-light: #7dd87d;
  --rcc-green: #3d9e3d;
  --rcc-green-dark: #2d7a2d;

  /* Theme */
  --primary: var(--rcc-blue);
  --primary-dark: var(--rcc-blue-dark);
  --accent: var(--rcc-green);
  --accent-hover: var(--rcc-green-dark);
  --label-color: var(--rcc-green);
  --text: #333333;
  --text-muted: #666666;
  --text-light: #888888;
  --bg-white: #ffffff;
  --bg-light: #f7f8fa;
  --bg-gray: #f0f1f4;
  --border: #e5e7eb;
  --dark: #2d2926;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --radius-lg: 8px;
  --radius-pill: 99px;
  --transition: 0.25s cubic-bezier(0.32, 0, 0.67, 0);
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1320px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg-white);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

/* Full-bleed hero backgrounds — override global img sizing */
.hero-slide img,
.service-hero__bg img,
.page-hero--banner .page-hero__bg img {
  max-width: none;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rcc-blue-dark); }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== HEADER (Atradius-style) ========== */
.header {
  background: var(--bg-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

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

.logo img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

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

.nav__link {
  color: var(--text);
  font-weight: 400;
  font-size: 15px;
  padding: 24px 18px;
  transition: color var(--transition);
  display: block;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__dropdown { position: relative; }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all var(--transition);
  z-index: 100;
  border-top: 3px solid var(--rcc-green);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: var(--text);
  font-size: 14px;
}

.nav__dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--rcc-green);
  color: white;
  border-color: var(--rcc-green);
}

.btn--primary:hover {
  background: var(--rcc-green-dark);
  border-color: var(--rcc-green-dark);
  color: white;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

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

.btn--white {
  background: white;
  color: var(--rcc-blue-dark);
  border-color: white;
}

.btn--white:hover {
  background: var(--bg-light);
  color: var(--rcc-blue-dark);
}

.btn--outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.8);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

.btn--lg { padding: 14px 32px; font-size: 16px; }

.btn--pill { border-radius: var(--radius-pill); }

.btn--dark {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.btn--dark:hover {
  background: #1a1816;
  border-color: #1a1816;
  color: white;
}

.btn--green {
  background: var(--rcc-green);
  color: white;
  border-color: var(--rcc-green);
}

.btn--green:hover {
  background: var(--rcc-green-dark);
  border-color: var(--rcc-green-dark);
  color: white;
}

.btn-arrow::after {
  content: '→';
  margin-left: 4px;
  transition: transform var(--transition);
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* ========== HERO BANNER (Atradius-style) ========== */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 550px;
  display: flex;
  background: #333;
  overflow: hidden;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  display: block;
  transform: scale(1);
  will-change: transform;
}

.hero-slide.is-active img {
  animation: heroKenBurns 5s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.25) 100%),
    linear-gradient(39deg, rgba(0,51,102,0.55) 15%, rgba(0,51,102,0.15) 55%);
  z-index: 2;
  pointer-events: none;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 98px;
  padding-bottom: 48px;
}

.hero-banner__label {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.hero-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin-bottom: 16px;
}

.hero-banner__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-banner__actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-banner__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
}

.hero-banner__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rcc-green);
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.is-active {
  background: white;
  transform: scale(1.2);
}

/* ========== QUICK LINKS (Atradius pills) ========== */
.quick-links {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quick-links::-webkit-scrollbar {
  display: none;
  height: 0;
}

.quick-links .container {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
}

.quick-link {
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
}

.quick-link:hover,
.quick-link.active {
  color: var(--primary);
  border-bottom-color: var(--rcc-green);
}

/* ========== CLIENTS MARQUEE ========== */
.clients-section {
  background: var(--bg-white);
  padding: 40px 0 0;
  overflow: hidden;
  width: 100%;
}

.clients-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.clients-section__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 16px;
}

.clients-section__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1a3c2a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.clients-section__desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

.clients-marquee {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.clients-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientsMarquee 55s linear infinite;
  will-change: transform;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  min-height: 110px;
  border-right: 1px solid #e8eaed;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
  transition: background 0.25s ease;
}

.client-logo:hover {
  background: rgba(0, 0, 0, 0.02);
}

.client-logo--img img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(0.12);
  opacity: 0.95;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.client-logo--img:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.04);
}

.client-logo--dark img {
  height: 56px;
  border-radius: 4px;
}

/* Wider logos that look small at default height */
.client-logo--lg img {
  height: 72px;
  max-width: 260px;
}

.client-logo--xl img {
  height: 88px;
  max-width: 320px;
}

.client-logo--ferrero img {
  height: 108px;
  max-width: 160px;
  filter: none;
  opacity: 1;
}

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

@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
  .clients-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section--light { background: var(--bg-light); }
.section--gray { background: var(--bg-gray); }

.section__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--label-color);
  margin-bottom: 8px;
  display: block;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
}

.section__header {
  margin-bottom: 48px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin: 0 auto;
}

/* ========== TEASER BLOCKS (Atradius alternating) ========== */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 400px;
}

.teaser--reverse .teaser__image { order: 2; }
.teaser--reverse .teaser__content { order: 1; }

.teaser__image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, var(--rcc-blue-dark), var(--rcc-blue));
}

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

.teaser__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, var(--rcc-blue-dark) 0%, var(--rcc-blue-light) 100%);
}

.teaser__content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-white);
}

.teaser__label {
  font-size: 14px;
  color: var(--label-color);
  margin-bottom: 8px;
}

.teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.teaser__title a {
  color: var(--text);
  position: relative;
  padding-left: 0;
  transition: padding-left var(--transition), color var(--transition);
}

.teaser__title a:hover {
  color: var(--primary);
  padding-left: 24px;
}

.teaser__title a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all var(--transition);
  color: var(--rcc-green);
}

.teaser__title a:hover::before {
  left: 0;
  opacity: 1;
}

.teaser__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.teaser__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.teaser__link:hover { gap: 10px; }

.teaser__content .btn { margin-top: auto; width: fit-content; }

/* ========== INTRO BLOCK ========== */
.intro-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.intro-block {
  max-width: 640px;
}

.intro-block .section__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 24px;
}

.intro-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-block .btn { margin-top: 8px; }

.intro-split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  height: 100%;
  background: linear-gradient(135deg, var(--rcc-blue-deep), var(--rcc-blue));
  box-shadow: var(--shadow-card);
}

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

/* ========== SPOTLIGHT CARDS ========== */
.spotlight-section { padding-top: 48px; padding-bottom: 48px; }

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

.spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--rcc-green);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
  color: inherit;
}

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

.spotlight-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  color: var(--rcc-blue);
  background: rgba(26, 111, 196, 0.08);
  border-radius: 50%;
}
.spotlight-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.spotlight-card__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--label-color);
}

.spotlight-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}

.spotlight-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.spotlight-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 4px;
}
.spotlight-card__link::after,
.solution-card__link::after,
.news-card__link::after {
  content: '\2192';
  margin-left: 4px;
  transition: transform var(--transition);
}
.spotlight-card:hover .spotlight-card__link::after,
.solution-card:hover .solution-card__link::after,
.news-card:hover .news-card__link::after {
  transform: translateX(3px);
}

/* ========== MINI TEASER ROW ========== */
.mini-teaser-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mini-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 48px;
  background: var(--bg-white);
  color: inherit;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.mini-teaser:last-child { border-right: none; }

.mini-teaser--alt { background: var(--bg-light); }

.mini-teaser:hover {
  background: var(--bg-gray);
  color: inherit;
}

.mini-teaser__label {
  font-size: 13px;
  color: var(--label-color);
  margin-bottom: 6px;
  display: block;
}

.mini-teaser__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.mini-teaser__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}

.mini-teaser__arrow {
  font-size: 28px;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.mini-teaser__arrow::before {
  content: '\2192';
}

.mini-teaser:hover .mini-teaser__arrow { transform: translateX(6px); }

/* ========== CONTACT PERSON CARD ========== */
.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--rcc-green);
  margin-bottom: 28px;
  max-width: 420px;
}

.contact-person__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rcc-blue), var(--rcc-green));
  color: white;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0 6px;
}

.contact-person__name {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-person__role {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-person__email {
  font-size: 14px;
  font-weight: 500;
}

/* ========== SOLUTION CARDS (Atradius grid) ========== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-card__image {
  height: 200px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rcc-blue-dark), var(--rcc-blue-light));
  position: relative;
}

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

.solution-card__label {
  font-size: 14px;
  color: var(--label-color);
}

.solution-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.solution-card__title a {
  color: var(--text);
  transition: color var(--transition);
}

.solution-card__title a:hover { color: var(--primary); }

.solution-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.solution-card__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.solution-card__link:hover {
  color: var(--primary);
  gap: 10px;
}

/* ========== STATS ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--rcc-blue);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
}

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

/* ========== TRUST SECTION ========== */
.trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-section__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  height: 100%;
  background: linear-gradient(135deg, var(--rcc-blue-deep), var(--rcc-green-dark));
}

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

/* ========== MEDIA FEATURE (Atradius Credit-IQ style) ========== */
.media-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
  background: var(--bg-white);
}

.media-feature--reverse .media-feature__image { order: 2; }
.media-feature--reverse .media-feature__content { order: 1; }

.media-feature__image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

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

.media-feature__content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-feature__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--label-color);
  margin-bottom: 12px;
}

.media-feature__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 480px;
}

.media-feature__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

/* ========== CONSULTATION CARD (Atradius grey band + white card) ========== */
.consultation-section {
  background: var(--bg-gray);
  padding: 80px 40px;
}

.consultation-card {
  background: var(--bg-white);
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 56px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.consultation-card__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--label-color);
  margin-bottom: 16px;
  display: block;
}

.consultation-card__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

/* ========== CTA BANNER (legacy) ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--rcc-blue-deep) 0%, var(--rcc-blue-dark) 60%, var(--rcc-blue) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CONTACT ========== */
.page-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rcc-green-light);
  margin-bottom: 12px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.contact-highlight {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--rcc-green);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.contact-highlight__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-highlight__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-sidebar .contact-person {
  margin-bottom: 0;
  max-width: none;
}

.contact-info-panel {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-info-panel__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-info-panel__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info__item:last-child { margin-bottom: 0; }

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-left: 3px solid var(--rcc-green);
  color: var(--rcc-blue);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__item h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.contact-info__item a:hover { color: var(--rcc-blue); }

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.contact-form-card__header {
  padding: 32px 40px 0;
}

.contact-form-card__header .section__label { margin-bottom: 8px; }

.contact-form-card__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-form {
  padding: 28px 40px 40px;
}

.contact-form .alert { margin-bottom: 20px; }

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg-white);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rcc-blue);
  box-shadow: 0 0 0 3px rgba(var(--rcc-blue-rgb), 0.15);
}

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

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

.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.5;
}

.contact-intro-section { padding-top: 56px; }

.contact-map {
  margin-top: 80px;
}

.contact-map__header {
  margin-bottom: 28px;
  max-width: 640px;
}

.contact-map__header .section__title,
.contact-map__header .section__desc {
  text-align: left;
}

.contact-map__frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.contact-map__frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* legacy alias */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; }

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--rcc-blue-deep), var(--rcc-blue-dark));
  padding: 80px 0 64px;
}

.page-hero--banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--rcc-blue-deep);
}

.page-hero--banner .page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

.page-hero--banner .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(8,42,92,0.82) 0%, rgba(8,42,92,0.45) 55%, rgba(8,42,92,0.2) 100%);
  z-index: 1;
}

.page-hero--banner .container {
  position: relative;
  z-index: 2;
  padding: 100px 40px 64px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ========== SERVICE DETAIL ========== */
.service-detail { max-width: 760px; }
.service-detail h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin: 32px 0 12px;
}
.service-detail p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.service-detail ul { margin: 16px 0 24px 24px; list-style: disc; }
.service-detail ul li { color: var(--text-muted); margin-bottom: 8px; }

/* ========== SPLIT SECTION (About page) ========== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.split-section__content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.split-section__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  height: 100%;
  background: linear-gradient(135deg, var(--rcc-blue-deep), var(--rcc-blue));
  box-shadow: var(--shadow-card);
}

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

@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section__image { min-height: 280px; }
}

/* Director profile (About page) */
.director-profile.split-section {
  gap: 56px;
}

/* Press / media clipping (About page) */
.press-feature {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 48px 56px;
  align-items: start;
}

.press-feature__content .section__title {
  margin-bottom: 20px;
}

.press-feature__content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.press-feature__note {
  font-size: 14px !important;
  color: var(--text-light) !important;
  border-left: 3px solid var(--rcc-green);
  padding-left: 16px;
  margin-top: 8px;
}

.press-feature__clip {
  margin: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.press-feature__link {
  display: block;
  transition: opacity var(--transition);
}

.press-feature__link:hover {
  opacity: 0.92;
}

.press-feature__clip img {
  width: 100%;
  height: auto;
  display: block;
}

.press-feature__clip figcaption {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-align: center;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .press-feature {
    grid-template-columns: 1fr;
  }
  .press-feature__clip {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

.director-profile__photo {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.director-profile__photo img {
  object-position: center top;
}

.director-profile__name {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}

.director-profile__role {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rcc-green);
  margin-bottom: 20px;
}

.director-profile__quote {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  border-left: 4px solid var(--rcc-blue);
  padding-left: 20px;
  margin-bottom: 20px;
}

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

.about-card {
  padding: 32px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--rcc-green);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.about-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

.section--compact { padding: 48px 0; }
.section--compact .section__header { margin-bottom: 28px; }
.section--compact .section__title { margin-bottom: 0; }

.about-teams {
  max-width: 100%;
}

.about-teams__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: teams;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 36px;
}

.about-teams__item {
  position: relative;
  padding: 0 0 0 40px;
  margin: 0;
  border-bottom: none;
  counter-increment: teams;
}

.about-teams__item::before {
  content: counter(teams, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--rcc-green);
  background: rgba(61, 158, 61, 0.1);
  border-radius: 50%;
  letter-spacing: 0.02em;
}

.about-teams__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.about-teams__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .about-teams__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .about-teams__item {
    padding-left: 36px;
  }

  .about-teams__item::before {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .about-teams__title {
    font-size: 16px;
  }
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--rcc-blue-light);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--rcc-blue), var(--rcc-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.feature-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.feature-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-card__text { font-size: 14px; color: var(--text-muted); }

/* ========== FOOTER (Atradius-style) ========== */
.footer {
  background: var(--rcc-blue-deep);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand img {
  display: inline-block;
  height: auto;
  max-height: 72px;
  width: auto;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

.footer ul a:hover { color: var(--rcc-green-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer__bottom a { color: rgba(255,255,255,0.65); }
.footer__bottom a:hover { color: var(--rcc-green-light); }

/* ========== ALERTS ========== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
}
.alert--success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert--error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* ========== FORM SUCCESS / ERROR POPUP ========== */
body.rcc-feedback-open { overflow: hidden; }

.rcc-feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rcc-feedback-modal[hidden] { display: none !important; }

.rcc-feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 40, 0.55);
}

.rcc-feedback-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  padding: 36px 28px 28px;
  text-align: center;
  animation: rccFeedbackIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes rccFeedbackIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.rcc-feedback-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcc-feedback-modal__icon svg {
  width: 34px;
  height: 34px;
}

.rcc-feedback-modal--success .rcc-feedback-modal__icon {
  background: #e8f5e9;
  color: var(--rcc-green-dark, #2e7d32);
}

.rcc-feedback-modal--error .rcc-feedback-modal__icon {
  background: #ffebee;
  color: #c62828;
}

.rcc-feedback-modal__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.25;
}

.rcc-feedback-modal__message {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 24px;
}

.rcc-feedback-modal__btn {
  min-width: 120px;
}

@media (max-width: 480px) {
  .rcc-feedback-modal__dialog { padding: 28px 20px 22px; }
  .rcc-feedback-modal__title { font-size: 22px; }
}

/* ========== FULL-WIDTH TEASER WRAPPER ========== */
.teaser-wrapper { padding: 0; }
.teaser-wrapper .teaser { max-width: 100%; }

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
  background: linear-gradient(135deg, var(--rcc-blue-deep), var(--rcc-blue-dark));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: white;
  margin: 80px 0;
}

.highlight-box .section__label { color: var(--rcc-green-light); }
.highlight-box .section__title { color: white; }
.highlight-box p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
}

.reveal--up { transform: translateY(60px); }
.reveal--down { transform: translateY(-36px); }
.reveal--left { transform: translateX(-60px); }
.reveal--right { transform: translateX(60px); }
.reveal--scale { transform: scale(0.92); }

.reveal.is-visible {
  animation-duration: 0.85s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
  animation-delay: var(--reveal-delay, 0s);
}

.reveal--up.is-visible { animation-name: revealUp; }
.reveal--down.is-visible { animation-name: revealDown; }
.reveal--left.is-visible { animation-name: revealLeft; }
.reveal--right.is-visible { animation-name: revealRight; }
.reveal--scale.is-visible { animation-name: revealScale; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes revealRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes revealScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* Hero entrance on load */
.hero-entrance {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeIn 0.9s cubic-bezier(0.32, 0, 0.67, 0) forwards;
  animation-delay: var(--hero-delay, 0s);
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-entrance {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-slide.is-active img {
    animation: none;
    transform: none;
  }
}

/* Safety: never leave content invisible if animation stalls */
.reveal.is-visible {
  opacity: 1;
}

/* ========== SERVICE PAGE (Atradius-style) ========== */
.service-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #333;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

.service-hero--training .service-hero__bg img {
  object-position: center 25%;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(39deg, rgba(8,42,92,0.7) 20%, rgba(8,42,92,0.25) 60%);
  z-index: 1;
}

.service-hero .container {
  position: relative;
  z-index: 2;
  padding: 120px 40px 56px;
}

.service-hero__crumb {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-hero__label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.service-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin-bottom: 16px;
}

.service-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.service-pills {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.service-pills::-webkit-scrollbar { display: none; }

.service-pills .container {
  display: flex;
  flex-wrap: nowrap;
}

.service-pill {
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
}

.service-pill:hover,
.service-pill.active {
  color: var(--primary);
  border-bottom-color: var(--rcc-green);
}

.service-intro {
  max-width: 780px;
}

.service-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-intro p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-intro ul {
  margin: 8px 0 20px;
  padding: 0;
  list-style: none;
}

.service-intro ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.service-intro ul li:last-child { border-bottom: none; }

.service-intro ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rcc-green);
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}

.service-benefits__item h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-benefits__item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.service-dual-card {
  padding: 56px 48px;
  background: var(--bg-white);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-dual-card--alt { background: var(--bg-light); }

.service-dual-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}

.service-dual-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-touch {
  text-align: center;
  padding: 64px 0;
}

.service-touch .section__title {
  margin-bottom: 12px;
}

.service-touch .section__desc {
  margin: 0 auto 28px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .service-benefits { grid-template-columns: 1fr; }
  .service-dual-cta { grid-template-columns: 1fr; }
  .service-dual-card { border-right: none; border-bottom: 1px solid var(--border); }
  .container { padding: 0 24px; }
  .intro-split { grid-template-columns: 1fr; }
  .intro-split__image { min-height: 280px; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .mini-teaser-row { grid-template-columns: 1fr; }
  .mini-teaser { border-right: none; border-bottom: 1px solid var(--border); }
  .teaser { grid-template-columns: 1fr; }
  .teaser--reverse .teaser__image { order: 0; }
  .teaser--reverse .teaser__content { order: 0; }
  .teaser__content { padding: 40px 24px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .trust-section { grid-template-columns: 1fr; }
  .media-feature { grid-template-columns: 1fr; }
  .media-feature--reverse .media-feature__image { order: 0; }
  .media-feature--reverse .media-feature__content { order: 0; }
  .media-feature__content { padding: 48px 24px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .service-hero .container { padding: 100px 24px 48px; }
  .service-hero { min-height: 360px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-highlights { grid-template-columns: 1fr; margin-top: 0; }

  /* Tablet / mobile nav — avoid cramped header */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav__link { width: 100%; padding: 14px 0; }
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
    border-top: none;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .header__actions { margin-top: 16px; width: 100%; }
  .header__actions .btn { width: 100%; }
  .mobile-toggle { display: block; z-index: 1001; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    pointer-events: auto;
  }
  /* Overlay must never sit above header/nav or block desktop clicks */
  @media (min-width: 1025px) {
    body.nav-open::after { display: none; }
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: auto;
    min-height: 420px;
  }
  .hero-banner .container {
    height: auto;
    min-height: 420px;
    padding-top: 88px;
    padding-bottom: 40px;
  }
  .hero-banner__info {
    flex-wrap: wrap;
  }
  .hero-banner__actions .btn {
    min-width: 0;
  }
  .hero-dots { right: 24px; bottom: 20px; }
  .hero-slide.is-active img { animation: heroKenBurnsMobile 5s ease-out forwards; }
  @keyframes heroKenBurnsMobile {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
  }
  .mini-teaser { padding: 28px 24px; }
  .solutions-grid, .about-grid, .contact-grid, .contact-layout, .form-row, .features-grid { grid-template-columns: 1fr; }
  .contact-form-card__header,
  .contact-form { padding-left: 24px; padding-right: 24px; }
  .contact-map__frame iframe { height: 300px; }
  .page-hero__actions .btn { width: 100%; }
  .page-hero--banner { min-height: 320px; }
  .page-hero--banner .container { padding: 88px 24px 48px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item strong { font-size: 36px; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .quick-links .container {
    padding: 0 24px;
    width: max-content;
    max-width: none;
  }
  .quick-link { padding: 16px 20px; }
  .service-pills .container {
    padding: 0 16px;
    width: max-content;
    max-width: none;
  }
  .consultation-section { padding: 48px 16px; }
  .consultation-card { padding: 36px 24px; }
  .highlight-box { padding: 28px 20px; margin: 48px 0; }
  .service-dual-card { padding: 36px 24px; }
  .cta-banner { padding-left: 16px; padding-right: 16px; }
  .fab-register {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: 12px;
  }
  body { padding-bottom: 88px; }
}

@media (max-width: 480px) {
  .hero-banner { min-height: 0; }
  .hero-banner .container { min-height: 0; padding-top: 80px; padding-bottom: 36px; }
  .hero-banner__title { font-size: clamp(28px, 8vw, 36px); }
  .hero-banner__desc { font-size: 15px; margin-bottom: 20px; }
  .hero-banner__actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero-banner__actions .btn { width: 100%; }
  .hero-banner__info { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-banner__dot { display: none; }
  .logo img { height: 44px; }
  .container { padding: 0 16px; }
}

/* ========== FAQ SECTION ========== */
.faq-section { padding: 80px 0; }

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Each accordion row */
.faq-item {
  border-bottom: 1px solid var(--border);
}

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

/* Question button */
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  background: var(--bg-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  transition: background var(--transition), color var(--transition);
}

.faq-item__question:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.faq-item.is-open > .faq-item__question {
  background: var(--bg-light);
  color: var(--primary);
}

/* Plus / minus icon */
.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

/* horizontal bar */
.faq-item__icon::before {
  width: 12px;
  height: 2px;
}

/* vertical bar */
.faq-item__icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.is-open .faq-item__icon {
  background: var(--rcc-green);
  border-color: var(--rcc-green);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: white;
}

/* Answer panel — animates via max-height */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-white);
}

.faq-item__answer[hidden] {
  display: none;
}

.faq-item__body {
  padding: 6px 28px 26px;
}

.faq-item__body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item__answer a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-item__question {
    font-size: 15px;
    padding: 18px 20px;
  }
  .faq-item__body {
    padding: 4px 20px 20px;
  }
}

/* ========== FLOATING ACTION BUTTON — Register a Case (always visible) ========== */
.fab-register {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rcc-green);
  color: #fff;
  border-radius: var(--radius-pill);
  height: 56px;
  padding: 0 22px 0 16px;
  box-shadow: 0 6px 24px rgba(45, 122, 45, 0.45);
  text-decoration: none;
  font-family: var(--font-body);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: fabSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.fab-register:hover {
  background: var(--rcc-green-dark);
  color: #fff;
  box-shadow: 0 8px 28px rgba(45, 122, 45, 0.55);
  transform: translateY(-2px);
}

.fab-register:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(45, 122, 45, 0.4);
}

.fab-register__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.fab-register__icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  flex-shrink: 0;
}

/* Label always visible while scrolling */
.fab-register__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
}

/* Soft pulse so it stays noticeable */
.fab-register::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 0 rgba(61, 158, 61, 0.45);
  animation: fabPulse 2.8s ease-out 1.2s infinite;
  pointer-events: none;
}

@keyframes fabSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0    rgba(61, 158, 61, 0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(61, 158, 61, 0);   }
  100% { box-shadow: 0 0 0 0    rgba(61, 158, 61, 0);   }
}

@media (prefers-reduced-motion: reduce) {
  .fab-register,
  .fab-register::before { animation: none; }
}

@media (max-width: 480px) {
  .fab-register {
    bottom: max(14px, env(safe-area-inset-bottom));
    right: 10px;
    height: 48px;
    padding: 0 14px 0 10px;
    gap: 8px;
  }

  .fab-register__label {
    font-size: 12px;
  }
}

/* ========== HIDE INJECTED CHAT WIDGET ========== */
.chat-widget-bubble,
.chat-widget-window,
[class*="chat-widget"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
