/* ============================================
   BLUE NOBLE - Design System & Styles
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Colors */
  --navy: #415588;
  --blue: #3399ff;
  --light-blue: #99ccff;
  --white: #F5F5F5;
  --black: #000000;
  --text: #26314e;
  --navy-overlay: rgba(65, 85, 136, 0.77);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overscroll-behavior: none;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  background: var(--navy);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

.heading-xl {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.1;
}

.heading-lg {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.2;
}

.heading-md {
  font-size: clamp(28px, 3vw, 42px);
}

.heading-sm {
  font-size: clamp(20px, 2vw, 32px);
}

.text-italic {
  font-style: italic;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade in from bottom */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale in */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Line draw */
@keyframes drawLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Counter animation handled by JS */

/* Reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 32px 0;
  background: var(--white);
  transition: padding var(--transition-medium), box-shadow var(--transition-medium);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  height: 33px;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 100%;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  transition: transform var(--transition-fast);
  position: relative;
  z-index: 10;
}

.nav-toggle:hover {
  transform: scale(1.1);
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition-medium);
}


.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(4px, -4px);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--white);
  padding: 120px 60px 60px;
  transition: right var(--transition-slow);
  z-index: 999;
}

.nav-menu.active {
  right: 0;
}

.nav-menu ul {
  list-style: none;
}

.nav-menu li {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.nav-menu.active li {
  opacity: 1;
  transform: translateX(0);
}

.nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }

.nav-menu a {
  font-family: var(--font-heading);
  font-size: clamp(22px, 8vw, 36px);
  color: var(--navy);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width var(--transition-medium);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  height: 200px;
  background: var(--navy);
  z-index: -1;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero.loaded .hero-slide.active {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-overlay);
  z-index: -1;
  transition: opacity 0.15s ease;
}

.hero {
  cursor: grab;
  user-select: none;
}

.hero.is-dragging {
  cursor: grabbing;
}

.hero.is-dragging * {
  pointer-events: none;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, var(--navy) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}


.hero-content {
  color: var(--white);
}

.hero-tagline {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-tagline p {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 69px);
  line-height: 1.1;
  margin-bottom: 0;
}

.hero-tagline p:last-child {
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: clamp(24px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* Hero Slider Navigation */
.hero-slider-nav {
  position: absolute;
  bottom: 120px;
  right: clamp(24px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 16px;
  width: clamp(320px, 45vw, 550px);
  z-index: 10;
}

.hero-slider-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  white-space: nowrap;
  min-width: 160px;
  text-align: right;
}

.hero-slider-track {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
}

.hero-slider-progress {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: var(--white);
  width: 12.5%;
  transition: left 0.5s ease;
}

.hero-slider-arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-slider-arrows button {
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hero-slider-arrows button:hover {
  transform: scale(1.2);
}

.hero-slider-arrows button:active {
  transform: scale(0.95);
}

.hero-slider-arrows img {
  width: 16px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Page Hero (smaller) */
.hero-page {
  height: 70vh;
  min-height: 500px;
}

.hero-page .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 74px);
  color: var(--white);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  min-height: clamp(450px, 60vw, 700px);
  display: flex;
  align-items: center;
  background: var(--white);
}

.intro-shield-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-27%);
  width: 95%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.intro-shield-bg img {
  width: 100%;
  height: auto;
}

.intro-shield {
  position: absolute;
  left: clamp(-200px, -15vw, -120px);
  top: 50%;
  transform: translateY(-50%);
  width: min(745px, 63vw);
  height: min(596px, 51vw);
  z-index: 1;
}

.intro-shield img {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.intro-content {
  max-width: clamp(280px, 45vw, 540px);
  margin-left: auto;
  margin-right: clamp(24px, 3vw, 36px);
  position: relative;
  z-index: 2;
}

.intro-text {
  font-size: 22px;
  line-height: 34px;
  color: var(--text);
  font-weight: 300;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: var(--navy);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.stats-grid::before,
.stats-grid::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--blue);
}

.stats-grid::before {
  left: 33.33%;
}

.stats-grid::after {
  left: 66.66%;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
}

.stat-icon {
  width: 200px;
  height: 190px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  max-width: 100%;
  max-height: 100%;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 96px);
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--white);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.4;
}

.stats-footnote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--white);
  position: absolute;
  bottom: 40px;
  left: var(--container-padding);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  align-items: start;
  transition: transform var(--transition-medium);
}

.feature-card:hover {
  transform: translateX(20px);
}

.feature-shield {
  width: 150px;
  height: 120px;
}

.feature-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-90deg);
}

.feature-content {
  max-width: 800px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 64px);
  color: var(--navy);
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}

.feature-text {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 600px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
}

.feature-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.feature-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-link svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
}

.feature-link:hover svg {
  transform: translateX(8px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

.contact-info {
  background: var(--navy);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 74px);
  color: var(--blue);
  margin-bottom: 40px;
}

.contact-address {
  color: var(--white);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: normal;
}

.contact-email {
  color: var(--white);
  font-size: 20px;
  transition: color var(--transition-fast);
}

.contact-email:hover {
  color: var(--blue);
}

.contact-map {
  position: relative;
  min-height: 500px;
  background: var(--white);
}

#contact-map-google {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 100px;
  animation: pinBounce 2s ease-in-out infinite;
  z-index: 2;
}

.contact-map-pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -60%); }
}

/* ============================================
   TAGLINE SECTION
   ============================================ */

.tagline-section {
  position: relative;
  padding: 70px 0;
  text-align: center;
  background: var(--white);
}

.tagline-text {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy);
  line-height: 1.3;
}

.tagline-text em {
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy);
  padding: 40px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-logo {
  height: 33px;
}

.footer-logo img {
  height: 100%;
  width: auto;
}

.footer-linkedin {
  display: block;
  width: 30px;
  height: 30px;
}

.footer-linkedin img {
  width: 100%;
  height: 100%;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 24px 0;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--blue);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-bottom {
  padding-top: 16px;
}

.footer-legal {
  font-size: 11px;
  color: var(--white);
  line-height: 1.5;
}

/* ============================================
   PORTFOLIO SECTION (Investments Page)
   ============================================ */

.portfolio {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.portfolio-header {
  margin-bottom: 60px;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 64px);
  color: var(--navy);
  margin-bottom: 16px;
}

.portfolio-subtitle {
  font-size: 20px;
  color: var(--text);
}

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

.portfolio-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.legend-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.legend-dot.navy { background: var(--navy); }
.legend-dot.blue { background: var(--blue); }
.legend-dot.light-blue { background: var(--light-blue); }

.legend-label {
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
}

.portfolio-chart {
  position: relative;
}

.donut-chart {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Category Bars */
.category-bars {
  margin-top: 80px;
}

.category-bar {
  display: flex;
  align-items: center;
  padding: 40px 60px;
  color: var(--white);
  cursor: pointer;
  transition: transform var(--transition-medium), filter var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.category-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left var(--transition-slow);
}

.category-bar:hover::before {
  left: 100%;
}

.category-bar:hover {
  transform: scale(1.02);
}

.category-bar.navy { background: var(--navy); }
.category-bar.blue { background: var(--blue); }
.category-bar.light-blue { background: var(--light-blue); }

.category-shield {
  width: 60px;
  height: 50px;
  margin-right: 40px;
  opacity: 0.5;
}

.category-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.category-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 74px);
}

/* ============================================
   BUSINESS PROGRAMMES
   ============================================ */

.programmes {
  padding: var(--section-padding) 0;
  text-align: center;
  background: var(--white);
}

.programmes-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 64px);
  color: var(--navy);
  margin-bottom: 80px;
}

.programmes-content {
  background: var(--blue);
  padding: 80px 0;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 1200px) {
  .intro-shield {
    left: calc(50% - 780px);
  }
}

@media (max-width: 1024px) {
  .intro-grid,
  .portfolio-grid,
  .programme-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    gap: 16px 30px;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .stats-grid::before,
  .stats-grid::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

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

  .contact-map {
    min-height: 400px;
  }

  .intro {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: auto;
  }

  .intro-shield {
    display: none;
  }

  .intro-shield-bg {
    display: block;
    position: absolute;
    left: -45%;
    top: 50%;
    width: 170%;
    height: auto;
    transform: translateY(-50%) scaleX(-1);
    z-index: 0;
    pointer-events: none;
  }

  .intro-shield-bg img {
    width: 100%;
    height: auto;
  }

  .hero-scroll {
    display: none;
  }

  .hero-slider-nav {
    inset: auto;
    bottom: 120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-right: 12px;
    width: calc(100% - 48px);
    max-width: 450px;
    transform: none;
  }

  .hero-slider-label {
    min-width: 180px;
    font-size: 14px;
  }

  .intro-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 24px 0 36px;
  }

  .intro-text {
    font-size: 20px;
    line-height: 1.55;
  }

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

  .stat-item {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .stat-icon {
    width: 150px;
    height: 100px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 24px;
  }

  .feature-shield {
    width: 80px;
    height: 60px;
  }

  .feature-content {
    padding-left: 9px;
  }

  .footer-nav {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .category-bar {
    padding: 30px 40px;
  }

  .category-shield {
    width: 40px;
    height: 35px;
    margin-right: 24px;
  }
}

@media (max-width: 480px) {
  .hero-tagline p {
    font-size: 36px;
  }

  .contact-info {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .shield-bg,
  .shield-bg-title,
  .shield-bg-tagline {
    display: none;
  }
}
