/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.5.7_@babel+core@7.28.4_@playwright+test@1.56.1_react-dom@19.2.1_react@19.2.1__react@19.2.1_sass@1.77.4/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.5.7_@babel+core@7.28.4_@playwright+test@1.56.1_react-dom@19.2.1_react@19.2.1__react@19.2.1_sass@1.77.4/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Instrument+Sans:wght@400;500;600;700&display=swap");

:root {
  --radcom-blue: #1c3f95;
  --radcom-gold: #d1cd4d;
  --radcom-sky: #bfd0d9;
  --radcom-teal: #49d49d;
  --radcom-night: #434850;
  --radcom-coral: #ef6461;
  --radcom-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: #f4f6fb;
  color: var(--radcom-night);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav,
.product-cta,
.hero-actions a,
.nav-link {
  font-family: "Instrument Sans", "Manrope", "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 80px;
}

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

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(67, 72, 80, 0.15);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 24px;
}

.brand img {
  height: 64px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-link:hover {
  background: rgba(28, 63, 149, 0.1);
}

.subnav {
  background: #f6f8fb;
  border-bottom: 1px solid rgba(67, 72, 80, 0.12);
}

.subnav-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.subnav-link {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--radcom-night);
  border: 1px solid rgba(67, 72, 80, 0.12);
  font-weight: 600;
  font-size: 15px;
}

.subnav-link.active {
  background: var(--radcom-blue);
  color: #ffffff;
  border-color: transparent;
}

.lang-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: var(--radcom-gold);
  color: var(--radcom-blue);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 10px 20px rgba(209, 205, 77, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 0 0 1px rgba(28, 63, 149, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 24px rgba(209, 205, 77, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 0 0 2px rgba(28, 63, 149, 0.2);
  filter: saturate(1.05);
}

.mobile-lang {
  margin-top: 16px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(67, 72, 80, 0.25);
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid rgba(67, 72, 80, 0.15);
  padding: 16px 0 24px;
}

.mobile-section {
  padding: 12px 0;
  border-bottom: 1px solid rgba(67, 72, 80, 0.12);
}

.mobile-link {
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.mobile-sub {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding-left: 12px;
}

.mobile-sub a {
  text-decoration: none;
  color: var(--radcom-night);
}

.radcom-footer {
  background: var(--radcom-night);
}

.footer-top {
  background: var(--radcom-blue);
  color: var(--radcom-white);
  padding: 36px 0 28px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1fr) minmax(220px, 0.9fr);
  grid-gap: 24px;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  height: 65px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--radcom-sky);
}

.footer-facebook {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(9, 18, 46, 0.35);
}

.footer-contact h4 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--radcom-gold);
}

.footer-contact p {
  margin: 6px 0;
  font-size: 14px;
  color: var(--radcom-sky);
}

.footer-contact strong {
  color: var(--radcom-white);
  font-weight: 600;
}

.footer-contact a {
  color: var(--radcom-gold);
  text-decoration: none;
}

.footer-bottom {
  background: #0f2c73;
  color: var(--radcom-sky);
  padding: 28px 0 32px;
}

.footer-bottom-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}

.footer-bottom-center {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: var(--radcom-sky);
}

.footer-note,
.footer-copyright {
  margin: 0;
  font-size: 12px;
  color: var(--radcom-sky);
}

.footer-bottom-right {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  justify-items: end;
  padding-top: 4px;
}

.footer-bottom-logos {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-auto-rows: auto;
  align-items: center;
  justify-items: center;
  grid-gap: 10px 24px;
  gap: 10px 24px;
}

.footer-bottom-logos img {
  height: 48px;
  width: auto;
  opacity: 0.95;
}

.footer-eu-info {
  margin: 0;
  line-height: 1.5;
}

.footer-eu-info a {
  color: var(--radcom-gold);
  text-decoration: none;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 10px;
  row-gap: 10px;
  font-size: 13px;
}

.footer-menu a {
  color: var(--radcom-sky);
  text-decoration: none;
}

.footer-info {
  margin-top: 10px;
  font-size: 12px;
  color: var(--radcom-sky);
  line-height: 1.5;
}

.footer-info a {
  color: var(--radcom-gold);
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-left,
  .footer-bottom-center {
    max-width: 100%;
  }
  .footer-bottom-right {
    padding-top: 8px;
    justify-items: flex-start;
  }

  .footer-menu {
    grid-template-columns: repeat(2, max-content);
  }

  .footer-bottom-logos {
    grid-template-columns: repeat(2, max-content);
    justify-items: flex-start;
  }
}

.hero {
  background: radial-gradient(circle at 20% 20%, rgba(28, 63, 149, 0.45), transparent 55%),
    linear-gradient(140deg, #0f1f3a 0%, #142b5a 50%, #1c3f95 100%);
  color: #ffffff;
  padding: 72px 0 96px;
  box-shadow: 0 24px 48px rgba(15, 33, 58, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 60%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 12px
    ),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 205, 77, 0.3), transparent 70%);
  opacity: 0.7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-gap: 32px;
  gap: 32px;
  align-items: center;
  position: relative;
  animation: heroFade 0.9s ease-out both;
}

.hero-inner-stacked {
  margin-top: 32px;
}

.hero-media-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: none;
}

.hero-media.hero-media-full {
  border-radius: 0;
}

.hero-visual {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.35);
}

.hero-image,
.hero-video {
  width: 100%;
  height: clamp(420px, 60vh, 560px);
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 24, 48, 0.65), rgba(10, 20, 40, 0.2));
}

.hero-title-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px 0 28px;
  z-index: 2;
}

.hero-title-overlay h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  text-shadow: 0 12px 24px rgba(10, 20, 40, 0.35);
  max-width: 720px;
}


.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 17px;
  text-decoration: none;
  font-weight: 700;
}

.hero-actions a.primary {
  background: var(--radcom-gold);
  color: var(--radcom-night);
  box-shadow: 0 14px 24px rgba(209, 205, 77, 0.35);
}

.hero-actions a.secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.hero-metrics {
  background: rgba(10, 20, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 22px 24px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.hero-card-overlay {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 360px;
  background: rgba(10, 20, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-metrics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-metrics-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

@media (min-width: 1024px) {
  .hero-metrics-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.metric-chip {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.metric-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(209, 205, 77, 0.5);
  opacity: 0.7;
}

.metric-value {
  font-size: 22px;
  font-weight: 700;
}

.metric-label {
  font-size: 14px;
  opacity: 0.85;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  font-size: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  opacity: 0.8;
  margin: 0 0 12px;
}

.eyebrow.small {
  font-size: 12px;
  margin: 0;
}

.stat-grid {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  font-size: 16px;
}

.stat-card strong {
  font-size: 21px;
}

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

.section {
  margin-top: 56px;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

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

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(28, 63, 149, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(28, 63, 149, 0.16);
}

form.card {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

form label {
  display: grid;
  grid-gap: 6px;
  gap: 6px;
  font-weight: 600;
}

form input,
form textarea {
  border: 1px solid rgba(67, 72, 80, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
}

.section-block {
  padding: 72px 0;
}

.visual-strip {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 56px 0;
  text-align: center;
}

.visual-strip p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.section-block.alt {
  background: rgba(191, 208, 217, 0.35);
}

.section-block.primary {
  background: var(--radcom-blue);
  color: #ffffff;
}

.hero-banner {
  background: none;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-banner .section-title,
.hero-banner .section-lead {
  color: #ffffff;
}

.section-block.accent {
  background: var(--radcom-gold);
  color: var(--radcom-night);
}

.section-block.neutral {
  background: #e6e8ee;
  color: var(--radcom-night);
}

.section-block.success {
  background: var(--radcom-teal);
  color: var(--radcom-night);
}

.section-block.primary .section-title::after,
.section-block.success .section-title::after {
  background: rgba(255, 255, 255, 0.7);
}

.section-block.primary .section-lead,
.section-block.success .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.section-title {
  font-size: 42px;
  margin: 0 0 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-subtitle {
  font-size: 24px;
  margin: 32px 0 12px;
  color: #0d1b4c;
}

.section-title::after {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--radcom-gold);
  border-radius: 999px;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(28, 63, 149, 0.12);
  color: var(--radcom-blue);
}

.section-icon svg {
  width: 22px;
  height: 22px;
}

.section-lead {
  font-size: 20px;
  line-height: 1.5;
  max-width: 760px;
  color: #4a5a77;
}

.section-header {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 28px;
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(28, 63, 149, 0.08);
  box-shadow: 0 18px 30px rgba(28, 63, 149, 0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(28, 63, 149, 0.18);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0.2px;
}

.feature-card p {
  color: var(--radcom-night);
}

.feature-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(28, 63, 149, 0.08);
  margin-bottom: 12px;
}

.feature-card.has-icon::before {
  display: none;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(28, 63, 149, 0.12);
  color: var(--radcom-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.section-block.alt .feature-card::before {
  background: rgba(28, 63, 149, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(28, 63, 149, 0.1);
  color: var(--radcom-blue);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 24px;
  gap: 24px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.bullets li::before {
  content: "✓";
  color: #0f3da5;
  margin-right: 8px;
}

.specs {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e1e6ef;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta a {
  text-decoration: none;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
}

.cta a.primary {
  background: #0f1f3a;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 31, 58, 0.35);
}

.cta a.secondary {
  border: 1px solid currentColor;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 28px;
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(28, 63, 149, 0.08);
  box-shadow: 0 18px 32px rgba(15, 33, 58, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 40px rgba(15, 33, 58, 0.18);
}

.product-header {
  padding: 36px 24px;
  color: #ffffff;
  text-align: center;
}

.product-header.primary {
  background: #e6e8ee;
  color: var(--radcom-night);
}

.product-header.accent {
  background: var(--radcom-gold);
  color: var(--radcom-night);
}

.product-header.success {
  background: var(--radcom-teal);
  color: var(--radcom-night);
}

.product-content {
  padding: 30px 26px 34px;
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.product-icon img {
  width: 120px;
  height: auto;
}

.product-logo {
  width: 140px;
  height: auto;
  margin-bottom: 12px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-header.accent {
  background: #d1cd4d;
  color: var(--radcom-night);
}

.service-hero-logo {
  width: 220px;
  max-width: 80%;
  height: auto;
  margin: 0 0 16px;
  display: inline-block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-hero-logo--optifare {
  background: #d1cd4d;
  padding: 10px 14px;
  border-radius: 12px;
}

.service-hero-logo--optifare img {
  display: block;
}

.solution-product-logo {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 16px 26px rgba(15, 33, 58, 0.12);
}

.solution-products {
  align-items: stretch;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--radcom-night);
}

.product-features li svg {
  color: var(--radcom-blue);
  flex-shrink: 0;
}

.product-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--radcom-blue);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(28, 63, 149, 0.25);
}

.section-block.alt .feature-card {
  border: 1px solid rgba(67, 72, 80, 0.15);
  box-shadow: 0 18px 34px rgba(28, 63, 149, 0.08);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-title-overlay {
    padding: 20px 0 16px;
  }

  .hero-title-overlay h1 {
    font-size: 40px;
  }

  .hero-image,
  .hero-video {
    height: 260px;
  }

  .hero-card-overlay {
    position: static;
    margin: 16px auto 0;
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .section-lead {
    font-size: 18px;
  }

  .hero-logo-row {
    gap: 10px;
  }

  .hero-logo-row img {
    height: 36px;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }
}

.partners-marquee {
  margin-top: 32px;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(28, 63, 149, 0.08);
  padding: 18px 0;
}

.partners-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  animation: partners-scroll 28s linear infinite;
}

.partner-logo {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(15, 33, 58, 0.08);
}

.partner-logo img {
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo img:hover {
  filter: none;
  opacity: 1;
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.blog-hero {
  background: #0b0f1a;
  color: #ffffff;
  padding: 88px 0 78px;
}

.blog-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.blog-hero-title {
  font-size: 58px;
  margin: 12px 0 12px;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.blog-hero-title span {
  color: var(--radcom-gold);
}

.blog-hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 640px;
}

.blog-cta {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 30px rgba(15, 33, 58, 0.12);
  margin-top: -40px;
  border: 1px solid rgba(67, 72, 80, 0.1);
}

.blog-cta h2 {
  margin: 0 0 6px;
}

.blog-cta p {
  margin: 0;
  color: #4a5a77;
}

.blog-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-cta-actions .primary,
.blog-cta-actions .secondary,
.article-card .primary,
.article-card .secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.blog-cta-actions .primary,
.article-card .primary {
  background: var(--radcom-gold);
  color: var(--radcom-night);
  border: none;
}

.blog-cta-actions .secondary,
.article-card .secondary {
  background: #ffffff;
  color: var(--radcom-night);
  border: 1px solid rgba(67, 72, 80, 0.2);
}

.blog-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 28px;
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15, 33, 58, 0.12);
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 33, 58, 0.16);
}

.blog-card-media {
  position: relative;
  display: block;
}

.blog-card-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
}

.blog-card-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-card-tags span {
  background: rgba(255, 255, 255, 0.92);
  color: var(--radcom-night);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  }

.article-hero .blog-card-tags {
  position: static;
  margin-bottom: 14px;
}

.blog-card-body {
  padding: 22px 24px 26px;
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: #6c7a94;
  flex-wrap: wrap;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-body h3 {
  margin: 0;
  font-size: 21px;
}

.blog-card-body p {
  margin: 0;
  color: #4a5a77;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--radcom-blue);
  font-weight: 700;
}

.article-hero {
  position: relative;
  min-height: 360px;
}

.article-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 17, 26, 0.75), rgba(15, 17, 26, 0.1));
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  padding: 48px 0;
}

.article-hero h1 {
  margin: 16px 0 12px;
  font-size: 42px;
  max-width: 720px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  grid-gap: 28px;
  gap: 28px;
}

.article-content {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.article-paragraph {
  font-size: 18px;
  line-height: 1.6;
  color: #2f3a4a;
}

.article-subtitle {
  font-size: 26px;
  margin: 16px 0 6px;
  color: #0b1f57;
}

.article-sidebar {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
}

.article-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(15, 33, 58, 0.12);
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.article-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  color: #4a5a77;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .article-hero img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .blog-hero {
    padding: 64px 0 56px;
  }

  .blog-hero-title {
    font-size: 38px;
  }

  .blog-cta {
    padding: 18px 20px;
    margin-top: -28px;
  }

  .blog-card-media img {
    height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .partners-track {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

