/* ============================================
   RTMN — Minimalistic Black & White Theme
   ============================================ */

:root {
  --white: #ffffff;
  --black: rgb(36, 36, 36);
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --max-width: 1200px;
  --nav-height: 88px;
  --transition: 0.2s ease;
}

/* ============================================
   SPLASH / INTRO
   ============================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgb(20, 20, 20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, filter 0.8s ease;
  overflow: hidden;
}

.splash-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}

.splash-bg-1 {
  animation: splashBgFade 15s ease-in-out infinite;
}

.splash-bg-2 {
  animation: splashBgFade 15s ease-in-out infinite;
  animation-delay: 3s;
}

.splash-bg-3 {
  animation: splashBgFade 15s ease-in-out infinite;
  animation-delay: 6s;
}

.splash-bg-4 {
  animation: splashBgFade 15s ease-in-out infinite;
  animation-delay: 9s;
}

.splash-bg-5 {
  animation: splashBgFade 15s ease-in-out infinite;
  animation-delay: 12s;
}

@keyframes splashBgFade {
  0%      { opacity: 0.7; }
  15%     { opacity: 0.7; }
  20%     { opacity: 0; }
  95%     { opacity: 0; }
  100%    { opacity: 0.7; }
}

.splash-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.splash.done {
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
}

.splash-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.splash-logo {
  width: auto;
  height: 96px;
  max-width: 80%;
  object-fit: contain;
  animation: splashPulse 1.8s ease-in-out infinite, splashEntry 0.8s ease-out both;
}

.splash-text {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  opacity: 0;
  animation: splashFadeUp 0.6s ease-out 0.3s forwards;
}

.splash-line {
  width: 0;
  height: 1px;
  background: var(--gray-500);
  animation: splashLineGrow 1.2s ease-in-out 0.6s forwards;
}

@keyframes splashEntry {
  from {
    opacity: 0;
    transform: scale(0.6) blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) blur(0);
  }
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

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

@keyframes splashLineGrow {
  from { width: 0; }
  to { width: 120px; }
}

.splash-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: splashFadeUp 0.6s ease-out 1s forwards;
}

.splash-lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 36px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.splash-lang-hint {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
  opacity: 0;
  animation: splashFadeUp 0.6s ease-out 1.2s forwards;
}

.splash-lang-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.splash-lang-btn.active {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.splash-lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
}

/* Font fallbacks to reduce CLS during web font load */
@font-face {
  font-family: 'Raleway Fallback';
  src: local('Arial');
  size-adjust: 105%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Roboto Fallback';
  src: local('Arial');
  size-adjust: 100%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Roboto', 'Roboto Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

a:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Raleway Fallback', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p {
  color: var(--gray-600);
  line-height: 1.7;
}

ul { list-style: none; }

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-height);
  overflow: visible;
}

/* Offset for in-page anchor navigation so fixed navbar doesn't cover target */
:target {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgb(46, 51, 64);
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-600);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  opacity: 1;
}

.nav-links a.nav-cta {
  background: rgb(46, 51, 64);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: background var(--transition);
}

.nav-links a.nav-cta:hover {
  background: rgb(36, 41, 54);
  color: var(--white);
  opacity: 1;
}

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Solutions dropdown (mega-menu) */
.nav-dropdown {
  position: static;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  font-family: inherit;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.open > .nav-dropdown-trigger {
  color: var(--black);
}

.nav-dropdown-chevron {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 9998;
}

/* Invisible bridge — prevents hover gap between trigger and fixed menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 48px;
}

.nav-dropdown-column {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-heading {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.nav-dropdown-item {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-700, #333);
  transition: color var(--transition), transform var(--transition);
  letter-spacing: 0.005em;
}

.nav-dropdown-item:hover {
  color: var(--black);
  transform: translateX(2px);
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */

/* Full-width background image hero */
.hero-fullwidth {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-1 {
  animation: heroFade5 15s ease-in-out infinite;
}

.hero-bg-2 {
  animation: heroFade5 15s ease-in-out infinite;
  animation-delay: 3s;
  opacity: 0;
}

.hero-bg-3 {
  animation: heroFade5 15s ease-in-out infinite;
  animation-delay: 6s;
  opacity: 0;
}

.hero-bg-4 {
  animation: heroFade5 15s ease-in-out infinite;
  animation-delay: 9s;
  opacity: 0;
}

.hero-bg-5 {
  animation: heroFade5 15s ease-in-out infinite;
  animation-delay: 12s;
  opacity: 0;
}

@keyframes heroFade5 {
  0%      { opacity: 1; }
  15%     { opacity: 1; }
  20%     { opacity: 0; }
  95%     { opacity: 0; }
  100%    { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-fullwidth-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Hero insights widget */
.hero-insights {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 32px 36px;
  max-width: 520px;
  animation: heroInsightsIn 0.4s ease-out both;
}

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

.hero-insights-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.hero-insights-item {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.15s ease;
}

.hero-insights-item:hover {
  opacity: 1;
  padding-left: 6px;
}

.hero-insights-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.hero-insights-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}

.hero-insights-all {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-insights-all:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

@media (max-width: 900px) {
  .hero-insights {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin: 0 24px 40px;
  }
}

@media (max-width: 600px) {
  .hero-insights {
    margin: 0 16px 32px;
  }
}

.hero-fullwidth h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-fullwidth p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 560px;
}

/* Standard grid hero (used on other pages) */
.hero {
  padding: 160px 0 120px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

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

.hero-accent {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: rgb(46, 51, 64);
  color: var(--white);
}

.btn-primary:hover {
  background: rgb(36, 41, 54);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--black);
}

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

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--black);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  padding: 14px 0;
}

.btn-ghost:hover {
  opacity: 0.7;
}

.btn svg,
.btn-arrow {
  width: 16px;
  height: 16px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}

/* Section with gray background */
.section-gray {
  background: var(--gray-50);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 40px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.service-card.wide {
  grid-column: span 2;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--gray-900);
  display: block;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
}

.cert-logos img {
  height: 56px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}

.cert-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--gray-400);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: rgb(46, 51, 64);
}

.cta-banner .btn-primary:hover {
  background: var(--gray-200);
}

/* ============================================
   FEATURES GRID (Medical page)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 36px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-700, #404040);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  user-select: none;
  gap: 16px;
}

.faq-question:hover {
  color: var(--gray-700);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.about-hero-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

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

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
}

/* Video Section */
.video-section {
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 24px;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-caption {
  text-align: center;
}

.video-caption p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* Location Tabs */
.location-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.location-tab {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  font-family: inherit;
}

.location-tab:hover {
  color: var(--black);
}

.location-tab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.location-content {
  display: none;
}

.location-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-image {
  border-radius: 12px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.location-info h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.location-info p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Office Photo */
.office-photo {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.office-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Newsletter */
.newsletter {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter h2 {
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--black);
}

.newsletter-form button {
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--gray-800);
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-hero {
  padding: 160px 0 80px;
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.careers-hero h1 {
  margin-bottom: 20px;
}

.careers-hero p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.careers-hero-image {
  border-radius: 12px;
  overflow: hidden;
}

.careers-hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Culture */
.culture-text {
  max-width: 720px;
}

.culture-text h2 {
  margin-bottom: 24px;
}

.culture-text p {
  margin-bottom: 20px;
}

/* Quote */
.quote-section {
  text-align: center;
  padding: 80px 0;
}

.quote-text {
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.quote-author {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Fit Section */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fit-card {
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.fit-card h4 {
  margin-bottom: 8px;
}

.fit-card p {
  font-size: 0.9rem;
}

/* Open Roles */
.roles-list {
  max-width: 700px;
}

.role-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}

.role-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.role-title {
  font-weight: 500;
  font-size: 1.05rem;
}

.role-location {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-left: 16px;
}

.role-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Open Application */
.open-application {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  max-width: 700px;
}

.open-application h3 {
  margin-bottom: 12px;
}

.open-application p {
  margin-bottom: 24px;
}

/* Impact Section */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.impact-content h2 {
  margin-bottom: 16px;
}

.impact-content p {
  margin-bottom: 24px;
}

.impact-image {
  border-radius: 12px;
  overflow: hidden;
}

.impact-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.privacy-hero .hero-accent {
  margin-bottom: 12px;
}

.privacy-hero h1 {
  margin-bottom: 16px;
}

.privacy-hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.privacy-content h3 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.privacy-content p {
  margin-bottom: 16px;
}

.privacy-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.privacy-content li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   VERIFY PAGE
   ============================================ */
.verify-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.verify-hero h1 {
  margin-bottom: 16px;
}

.verify-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.verify-card {
  max-width: 600px;
  margin: 0 auto 80px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.verify-loading {
  display: none;
  color: var(--gray-500);
  font-size: 1rem;
}

.verify-loading.active {
  display: block;
}

.verify-success {
  display: none;
}

.verify-success.active {
  display: block;
}

.verify-success h3 {
  color: var(--black);
  margin-bottom: 8px;
}

.verify-success p {
  margin-bottom: 24px;
}

.verify-details {
  text-align: left;
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
}

.verify-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.verify-detail-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.verify-detail-value {
  font-size: 0.85rem;
  text-align: right;
  word-break: break-all;
  max-width: 60%;
}

.verify-error {
  display: none;
}

.verify-error.active {
  display: block;
}

.verify-error h3 {
  color: var(--black);
  margin-bottom: 8px;
}

.verify-error p {
  color: var(--gray-600);
}

/* Status icons */
.status-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.status-icon.success {
  background: var(--gray-100);
}

.status-icon.error {
  background: var(--gray-100);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgb(46, 51, 64);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.footer-logo span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--gray-300);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--white);
  opacity: 1;
}

.footer-social img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.footer-address {
  margin-top: 20px;
  font-style: normal;
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--gray-400);
  font-size: 0.8rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ============================================
   MEDICAL HERO
   ============================================ */
.medical-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.medical-hero h1 {
  margin-bottom: 16px;
}

.medical-hero p {
  font-size: 1.2rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page h1 {
  font-size: 6rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.error-page p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .hero-grid,
  .careers-hero-grid,
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-fullwidth {
    min-height: 70vh;
  }

  .hero {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .hero-image {
    order: -1;
  }

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

  .service-card.wide {
    grid-column: span 1;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .location-content.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nav-logo {
    font-size: 0.85rem;
    gap: 8px;
  }

  .nav-logo img {
    height: 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 0;
    border-top: 1px solid var(--gray-200);
    z-index: 10000;
    overflow-y: auto;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }

  .nav-links a.nav-cta {
    background: transparent;
    color: var(--gray-600);
    padding: 16px 0;
    border-radius: 0;
    font-weight: 400;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav-links .lang-switch {
    display: none;
  }

  /* Solutions dropdown on mobile */
  .nav-dropdown {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--gray-600);
  }

  .nav-dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    transform: none;
    transition: none;
    pointer-events: auto;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 0 12px;
  }

  /* Each column heading becomes a tap-to-expand accordion on mobile */
  .nav-dropdown-heading {
    cursor: pointer;
    user-select: none;
    position: relative;
    margin: 0;
    padding: 14px 32px 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.78rem;
  }

  .nav-dropdown-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--gray-500);
    border-bottom: 1.5px solid var(--gray-500);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .nav-dropdown-column.open .nav-dropdown-heading::after {
    transform: translateY(-30%) rotate(-135deg);
  }

  .nav-dropdown-column:not(.open) .nav-dropdown-item {
    display: none;
  }

  .nav-dropdown-item {
    padding: 10px 8px;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-dropdown-column:last-child .nav-dropdown-heading {
    border-bottom: 1px solid var(--gray-200);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  section {
    padding: 64px 0;
  }

  .hero-fullwidth {
    min-height: 60vh;
  }

  .hero-fullwidth-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

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

  .cert-logos {
    gap: 32px;
  }

  .cert-logos img {
    height: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .open-application {
    padding: 32px 24px;
  }

  .careers-hero {
    padding: 120px 0 60px;
  }

  .about-hero {
    padding: 120px 0 60px;
  }

  .medical-hero {
    padding: 120px 0 60px;
  }

  .privacy-hero {
    padding: 120px 0 40px;
  }

  .verify-hero {
    padding: 120px 0 40px;
  }

  .verify-card {
    padding: 32px 24px;
  }

  .role-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .quote-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.875rem; }

  .container {
    padding: 0 16px;
  }

  .service-card,
  .feature-card {
    padding: 28px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .location-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================
   ANIMATIONS (subtle)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
html[lang="en"] .lang-es { display: none !important; }
html[lang="es"] .lang-en { display: none !important; }

.lang-switch {
  background: none;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.lang-switch:hover {
  border-color: var(--black);
  color: var(--black);
}


/* Desktop: lang switch inside nav-links */
.nav-links .lang-switch {
  margin-left: 8px;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card {
  display: block;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.brand-card:hover {
  border-color: var(--gray-400);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
  opacity: 1;
}

.brand-card-inner {
  padding: 40px 32px;
}

.brand-logo-area {
  margin-bottom: 20px;
  height: 48px;
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 36px;
  width: auto;
}

.brand-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
}

.brand-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.brand-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   RESPONSIVE — Brands
   ============================================ */
@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}

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

.contact-form-grid .full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1 6 7 11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

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

.contact-form-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-status {
  font-size: 0.9rem;
}

.contact-status.success {
  color: #16a34a;
}

.contact-status.error {
  color: #dc2626;
}

.newsletter-status {
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}

.newsletter-status.success {
  color: #16a34a;
}

.newsletter-status.error {
  color: #dc2626;
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Spinner for loading states */
.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   INSIGHTS
   ============================================ */
.insights-hero {
  padding: 160px 0 60px;
  margin-top: var(--nav-height);
}

.insights-hero .section-header h1 {
  margin-bottom: 16px;
}

.insights-hero .section-header p {
  max-width: 600px;
}

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

.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.insight-card-animate {
  opacity: 0;
  animation: insightCardIn 0.5s ease-out forwards;
}

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

.insight-card:hover {
  border-color: var(--gray-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  opacity: 1;
}

.insight-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.insight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--black);
  line-height: 1.4;
}

.insight-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.insight-card-date {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.insights-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--gray-500);
  font-size: 1.1rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-bottom: 24px;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  color: var(--gray-600);
  transition: all var(--transition);
}

.pagination-link:hover {
  border-color: var(--gray-400);
  color: var(--black);
  opacity: 1;
}

.pagination-link.active {
  background: rgb(46, 51, 64);
  color: var(--white);
  border-color: rgb(46, 51, 64);
}

/* Article detail */
.article-hero {
  padding-bottom: 40px;
}

.article-back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.article-back:hover {
  color: var(--black);
  opacity: 1;
}

.article-header h1 {
  font-size: 2.8rem;
  max-width: 800px;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.article-meta time {
  font-size: 0.9rem;
  color: var(--gray-500);
}

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

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 80px;
}

.article-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
}

.article-body h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--gray-700);
}

.article-body ul,
.article-body ol {
  margin: 16px 0 20px 24px;
  list-style: disc;
}

.article-body li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.article-body blockquote {
  border-left: 3px solid var(--gray-300);
  padding: 12px 24px;
  margin: 24px 0;
  color: var(--gray-600);
  font-style: italic;
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .insights-hero {
    padding: 130px 0 40px;
  }

  .article-header h1 {
    font-size: 2rem;
  }

  .article-body {
    padding: 32px 0 60px;
  }
}

/* ============================================
   COOKIE / CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-banner.closing {
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-text {
  flex: 1 1 260px;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--gray-700, #404040);
  margin: 0;
}

.cookie-banner-text a {
  color: var(--black);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--gray-700, #404040);
  border: 1px solid var(--gray-300);
}

.cookie-btn-reject:hover {
  border-color: var(--gray-500);
  color: var(--black);
}

.cookie-btn-accept {
  background: rgb(46, 51, 64);
  color: var(--white);
  border: 1px solid rgb(46, 51, 64);
}

.cookie-btn-accept:hover {
  background: rgb(36, 41, 54);
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
  }
}
