@charset "utf-8";
/* CSS Document - Intufo Custom Styles - Apple/Huly-Inspired Typography */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --color-primary: #FF6600;
  --color-dark: #07090c;
  --color-light: #fff;
  --nav-height: 96px;
  --card-radius: 16px;
  --transition-speed: 0.18s;
  
  /* Apple/Huly-inspired typography scale */
  --text-xs: 0.75rem;      /* 12px - tiny labels */
  --text-sm: 0.875rem;     /* 14px - body text, card descriptions */
  --text-base: 1rem;       /* 16px - standard body */
  --text-lg: 1.125rem;     /* 18px - large body */
  --text-xl: 1.25rem;      /* 20px - small headings */
  --text-2xl: 1.5rem;      /* 24px - subheadings */
  --text-3xl: 2rem;        /* 32px - section titles */
  --text-4xl: 3rem;        /* 48px - page titles */
  --text-5xl: 4rem;        /* 64px - hero */
}

@media (max-width: 767px) {
  :root {
    --nav-height: 84px;
  }
}

/* ===== OVERRIDE MOBIRISE DISPLAY CLASSES ===== */
/* Make them more refined like Apple/Huly */

.display-1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;      /* Was 7rem - now 64px max */
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

.display-2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;        /* Was 5rem - now 48px max */
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

.display-4 {
  font-size: clamp(0.875rem, 1vw, 1rem) !important;    /* Was 1.2rem - now 16px max */
  line-height: 1.6 !important;
  font-weight: 500 !important;
}

.display-5 {
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;   /* Was 3rem - now 24px max */
  line-height: 1.3 !important;
  font-weight: 600 !important;
}

.display-7 {
  font-size: clamp(0.875rem, 1vw, 1rem) !important;    /* Was 1.8rem - now 16px max (body text) */
  line-height: 1.6 !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

/* ===== NAVBAR STYLES ===== */
.navbar.navbar-dropdown {
  z-index: 1000;
}

.navbar.navbar-dropdown .nav-link {
  font-size: 0.875rem !important;                       /* 14px - smaller nav links */
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
}

.navbar.navbar-dropdown .nav-link,
.navbar.navbar-dropdown .nav-link:visited,
.navbar.navbar-dropdown .nav-link:hover,
.navbar.navbar-dropdown .nav-link:focus {
  color: rgba(255,255,255,.92) !important;
  text-decoration: none !important;
}

.navbar.navbar-dropdown a {
  text-decoration: none !important;
}

/* Always-dark navbar */
.navbar.navbar-dropdown,
.navbar.navbar-dropdown.navbar-short {
  background: rgba(10,14,20,.92) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  transition: background-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}

/* Force navbar always dark */
body.nav-on-light .navbar.navbar-dropdown,
body.nav-on-dark .navbar.navbar-dropdown,
.menu.menu2 .navbar.navbar-dropdown,
.menu.menu2 .navbar.navbar-dropdown.navbar-short,
.navbar-dropdown.bg-color,
.navbar-dropdown.bg-color.transparent {
  background-color: rgba(10,14,20,.94) !important;
  background-image: none !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.25) !important;
  backdrop-filter: blur(10px);
}

/* Make sure links stay white */
body.nav-on-light .navbar.navbar-dropdown .nav-link,
body.nav-on-dark .navbar.navbar-dropdown .nav-link,
.menu.menu2 .navbar-nav .nav-link,
.navbar.navbar-dropdown .nav-link {
  color: rgba(255,255,255,.92) !important;
}

/* CTA button - smaller, refined */
.navbar .navbar-buttons .btn {
  border-radius: 999px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.875rem !important;                       /* 14px */
  padding: 0.625rem 1.25rem !important;                 /* Smaller padding */
}

section.menu.menu2 {
  background: transparent !important;
}

/* ===== VIDEO HERO SECTION ===== */
.header18 {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.mbr-external-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mbr-external-video-bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mbr-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.container,
.container-fluid {
  position: relative;
  z-index: 2;
}

.header18 .hero-main {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 24px) 2rem 2rem;
}

.header18 .hero-main-inner {
  max-width: 1100px;
  width: 100%;
}

.header18 .content-wrap {
  max-width: 1200px;
}

/* Hero typography - refined like Apple */
.header18 .hero-leadin {
  font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.25rem);               /* Smaller - 20px max */
  line-height: 1.4;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  letter-spacing: 0.02em;
}

/* Title - still big but more refined */
.header18 .hero-title,
.header18 .hero-title * {
  font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 800 !important;
  color: #fff;
}

.header18 .hero-title {
  font-size: clamp(3rem, 8vw, 6rem);                    /* Reduced from 11rem to 6rem max */
  letter-spacing: -0.02em;
  line-height: .9;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,.65);
}

.header18 .hero-title-line2 {
  display: inline-block;
  letter-spacing: -0.01em;
  margin-top: -0.15em;
}

/* Powered by tag - smaller */
.header18 .hero-powered {
  font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.875rem);            /* Smaller - 14px max */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.75);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

/* Subhead - more readable */
.header18 .hero-subhead {
  font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 1.5rem);             /* Smaller - 24px max */
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  letter-spacing: 0.01em;
}

/* ===== HEADER01 SECTION - "Most AI suggest" ===== */
#header01-1m {
  min-height: auto !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

#header01-1m .content-wrapper {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#header01-1m .label-wrapper {
  margin-bottom: 1rem !important;
}

#header01-1m .mbr-label {
  font-size: 0.875rem !important;                       /* Smaller label - 14px */
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
}

#header01-1m .mbr-section-title {
  margin-bottom: 1.5rem !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;        /* Refined */
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

#header01-1m .text-wrapper {
  margin-bottom: 1.5rem !important;
}

#header01-1m .mbr-text {
  font-size: 1rem !important;                           /* Standard body - 16px */
  line-height: 1.6 !important;
  font-weight: 400 !important;
  color: rgba(0,0,0,.7) !important;
}

/* ===== SIX PILLARS SECTION (features07-25) ===== */

#features07-25 {
  background: var(--color-dark) !important;
  color: var(--color-light);
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* Section title - refined */
#features07-25 .mbr-section-title {
  color: var(--color-light) !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;   /* Smaller - 40px max */
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 1rem !important;
}

#features07-25 .mbr-section-subtitle,
#features07-25 .mbr-text {
  color: rgba(255,255,255,.65) !important;
  line-height: 1.6 !important;
  font-size: 1rem !important;                           /* Body text - 16px */
  font-weight: 400 !important;
}

#features07-25 .content-wrap,
#features07-25 .title-wrapper {
  margin-bottom: 2rem !important;
}

#features07-25 .items-wrapper {
  margin-top: 1.5rem !important;
  row-gap: 1.5rem;
}

/* Card styling - more refined */
#features07-25 .item-wrapper {
  height: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform var(--transition-speed) ease, 
              box-shadow var(--transition-speed) ease, 
              border-color var(--transition-speed) ease;
  position: relative;
  isolation: isolate;
  z-index: 1;
  padding: 1.25rem;                                     /* Tighter padding */
}

#features07-25 .item-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  border-color: rgba(255,255,255,.15);
}

/* Responsive image heights */
#features07-25 .item.features-image .item-img {
  height: clamp(160px, 18vw, 200px) !important;
  overflow: hidden !important;
  background: #000;
  border-radius: 12px;
  margin-bottom: 1rem !important;
}

#features07-25 .item.features-image .item-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}

/* Card typography - MUCH smaller, Apple-like */
#features07-25 .item-title {
  color: rgba(255,255,255,.95) !important;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
  font-size: 1.125rem !important;                       /* 18px - smaller card titles */
  line-height: 1.3 !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

#features07-25 .item-text {
  color: rgba(255,255,255,.8) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

/* ===== GLOW EFFECTS ===== */

#features07-25 .item-wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: 18px;
  background:
    radial-gradient(120% 90% at 15% 85%, rgba(255,120,0,.18), transparent 60%),
    radial-gradient(120% 90% at 85% 15%, rgba(0,170,255,.18), transparent 60%);
  filter: blur(16px);
  opacity: .8;
  transition: opacity var(--transition-speed) ease, 
              transform var(--transition-speed) ease;
}

#features07-25 .item-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--card-radius);
  background:
    linear-gradient(135deg, rgba(255,140,0,.25), rgba(0,170,255,.2));
  opacity: .12;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease;
}

#features07-25 .item-wrapper:hover::before {
  opacity: 1;
  transform: translateY(-2px);
}

#features07-25 .item-wrapper:hover::after {
  opacity: .2;
}

/* ===== METRICS SECTION (60x, 98%, 75%) ===== */

#features05-27 .mbr-section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;    /* Smaller section title */
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

#features05-27 .card-number {
  font-size: clamp(3rem, 6vw, 4rem) !important;        /* Reduced from huge */
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

#features05-27 .card-title {
  font-size: 1.125rem !important;                       /* 18px */
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

#features05-27 .card-text {
  font-size: 0.875rem !important;                       /* 14px - body text */
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

/* ===== BENEFITS CARDS SECTION ===== */

#features-8-vaK0mm2QRL .item-title {
  font-size: 1.125rem !important;                       /* 18px */
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

#features-8-vaK0mm2QRL .mbr-text {
  font-size: 0.875rem !important;                       /* 14px */
  line-height: 1.6 !important;
  font-weight: 400 !important;
  color: rgba(0,0,0,.65) !important;
}

/* ===== ARTICLE/TEXT SECTIONS ===== */

#generic-text-12-vaK0mm3rqW .mbr-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

#generic-text-12-vaK0mm3rqW .mbr-section-subtitle {
  font-size: 1.125rem !important;                       /* 18px */
  font-weight: 500 !important;
  color: rgba(0,0,0,.7) !important;
}

#generic-text-12-vaK0mm3rqW .mbr-text {
  font-size: 1rem !important;                           /* 16px - standard body */
  line-height: 1.7 !important;
  font-weight: 400 !important;
  color: rgba(0,0,0,.7) !important;
}

/* ===== CONTACT FORM ===== */

#contact-form-2-vaK0mm4IcR .mbr-section-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.form-control {
  font-size: 0.875rem !important;                       /* 14px inputs */
  padding: 0.75rem 1rem !important;
}

.btn {
  font-size: 0.875rem !important;                       /* 14px buttons */
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  padding: 0.75rem 1.5rem !important;
}

/* ===== FOOTER ===== */

.footer1 {
  font-size: 0.875rem !important;
}

.footer1 .header-menu-item a {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

.footer1 .copyright {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,.5) !important;
}

/* ===== UTILITY CLASSES ===== */

.text-xs {
  font-size: 0.75rem !important;                        /* 12px */
  line-height: 1.4 !important;
}

.text-sm {
  font-size: 0.875rem !important;                       /* 14px */
  line-height: 1.6 !important;
}

.text-base {
  font-size: 1rem !important;                           /* 16px */
  line-height: 1.6 !important;
}

.text-lg {
  font-size: 1.125rem !important;                       /* 18px */
  line-height: 1.5 !important;
}

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  #features07-25 .item-wrapper::before,
  #features07-25 .item-wrapper::after {
    opacity: 0.2 !important;
    filter: none !important;
  }
  
  #features07-25 .item-wrapper:hover {
    transform: none !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */

@media print {
  .navbar,
  .mbr-section-btn,
  video,
  .mbr-external-video-bg {
    display: none !important;
  }
  
  #features07-25 .item-wrapper::before,
  #features07-25 .item-wrapper::after {
    display: none !important;
  }
  
  body {
    font-size: 12pt !important;
  }
}

/* ===== NEW PERFORMANCE SECTIONS STYLING ===== */

/* Performance Banner */
#performance-banner {
  padding: 2rem 0 !important;
  min-height: auto !important;
}

#performance-banner .mbr-text {
  font-size: 1rem !important;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Performance Research Header */
#header18-performance {
  background: #1a1a1a !important;
  padding: 3rem 0 !important;
  min-height: auto !important;
}

#header18-performance .mbr-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 1.5rem !important;
}

#header18-performance .mbr-text {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  max-width: 900px;
  margin: 0 auto 2rem;
}

/* Metrics Section Styling */
#metrics-1-vaK0mm15iN {
  padding: 5rem 0 !important;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

#metrics-1-vaK0mm15iN .item-wrapper {
  text-align: center !important;
  padding: 2rem 1rem;
}

#metrics-1-vaK0mm15iN .card-box {
  text-align: center !important;
}

#metrics-1-vaK0mm15iN .display-1 {
  font-size: clamp(5rem, 12vw, 8rem) !important;
  font-weight: 900 !important;
  color: var(--color-primary) !important;
  letter-spacing: -0.03em !important;
  line-height: 0.9 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 2px 4px rgba(255, 102, 0, 0.1);
}

#metrics-1-vaK0mm15iN .num {
  font-size: clamp(5rem, 12vw, 8rem) !important;
  font-weight: 900 !important;
  color: var(--color-primary) !important;
  letter-spacing: -0.03em !important;
}

#metrics-1-vaK0mm15iN .display-5 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 1.25rem !important;
  color: #000 !important;
  line-height: 1.3 !important;
}

#metrics-1-vaK0mm15iN .card-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
}

#metrics-1-vaK0mm15iN .mbr-text {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: rgba(0,0,0,.65) !important;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefit Cards Section */
#features-8-vaK0mm2QRL {
  padding: 4rem 0 !important;
}

#features-8-vaK0mm2QRL .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#features-8-vaK0mm2QRL .item-img {
  height: 250px !important;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

#features-8-vaK0mm2QRL .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#features-8-vaK0mm2QRL .item-content {
  text-align: center !important;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#features-8-vaK0mm2QRL .item-title {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 1rem !important;
}

#features-8-vaK0mm2QRL .mbr-text {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: rgba(0,0,0,.7) !important;
}

/* Research Info Dark Section */
#features035-1j {
  background: #0a0a0a !important;
  color: #fff;
  padding: 3rem 0 !important;
}

#features035-1j .card-text {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,.8) !important;
}

#features035-1j .btn {
  font-size: 0.875rem !important;
}

/* SOC Analysis Article */
#generic-text-12-vaK0mm3rqW {
  padding: 4rem 0 !important;
}

#generic-text-12-vaK0mm3rqW .mbr-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem !important;
}

#generic-text-12-vaK0mm3rqW .mbr-section-subtitle {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: rgba(0,0,0,.65) !important;
  margin-bottom: 2rem !important;
}

#generic-text-12-vaK0mm3rqW .mbr-text {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: rgba(0,0,0,.7) !important;
  margin-bottom: 1.5rem !important;
}

/* ===== FOUNDERS SECTION - APPLE-INSPIRED DESIGN ===== */

#founders-section {
  padding: 5rem 0 !important;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  position: relative;
}

/* Section Label */
#founders-section .section-label {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.8;
  margin-bottom: 0 !important;
}

/* Founder Image - Circular with Subtle Glow */
.founder-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.founder-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 10px 40px rgba(0,0,0,.08),
    0 0 0 1px rgba(0,0,0,.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255,102,0,.2), 
    rgba(0,170,255,.15));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.founder-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 60px rgba(0,0,0,.12),
    0 0 0 1px rgba(0,0,0,.06);
}

.founder-image:hover::before {
  opacity: 1;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Name & Title */
.founder-info {
  margin-bottom: 2.5rem;
}

.founder-name {
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  color: #000;
  margin-bottom: 0.5rem !important;
}

.founder-title {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: rgba(0,0,0,.5) !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase;
}

/* Featured Quote - Card Style */
.founder-quote {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2.5rem 3rem;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(0,0,0,.04),
    0 2px 8px rgba(0,0,0,.02);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-quote:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 15px 50px rgba(0,0,0,.06),
    0 4px 12px rgba(0,0,0,.03);
}

.quote-mark {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: rgba(0,0,0,.8) !important;
  font-style: italic;
  font-weight: 400 !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

/* Company Story Section */
.company-story {
  max-width: 900px;
  margin: 0 auto;
}

.story-title {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: #000;
  margin-bottom: 2rem !important;
}

.story-content .mbr-text {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: rgba(0,0,0,.7) !important;
  margin-bottom: 1.5rem !important;
  font-weight: 400 !important;
}

.story-content .mbr-text em {
  color: rgba(0,0,0,.85);
  font-style: italic;
}

/* Principle Callout - Highlighted Box */
.principle-callout {
  background: linear-gradient(135deg, 
    rgba(255,102,0,.03), 
    rgba(0,170,255,.02));
  border-left: 3px solid var(--color-primary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.02);
}

.principle-callout .mbr-text {
  font-size: 1.125rem !important;
  line-height: 1.6 !important;
  color: rgba(0,0,0,.85) !important;
  font-weight: 500 !important;
  margin-bottom: 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  
  #founders-section {
    padding: 3rem 0 !important;
  }

  .founder-image {
    width: 160px;
    height: 160px;
  }

  .founder-quote {
    padding: 2rem 1.5rem;
  }

  .quote-mark {
    font-size: 3rem;
    left: 1rem;
  }

  .quote-text {
    font-size: 1rem !important;
  }

  .principle-callout {
    padding: 1.25rem 1.5rem;
  }

}

@media (max-width: 576px) {
  
  .founder-image {
    width: 140px;
    height: 140px;
  }

  .founder-quote {
    padding: 1.75rem 1.25rem;
  }

  .quote-text {
    font-size: 0.9375rem !important;
  }

}

/* Subtle animation on scroll (optional enhancement) */
@media (prefers-reduced-motion: no-preference) {
  
  .founder-image {
    animation: fadeInUp 0.6s ease-out;
  }

  .founder-info {
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
  }

  .founder-quote {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

}

/* ===== SCCAI VAULT SECTION STYLES ===== */

.vault-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 40px 80px;
    background: #ffffff;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vault-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Area */
.vault-hero {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
}

.vault-eyebrow {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6600;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vault-hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vault-hero-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    color: #5a5a5a;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.5;
}

/* Interactive Demo Area */
.vault-demo-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 140px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.vault-drop-zone {
    position: relative;
    height: 320px;
    border: 2px dashed rgba(0, 102, 204, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    background: #ffffff;
}

.vault-drop-zone:hover {
    border-color: rgba(0, 102, 204, 0.6);
    background: rgba(0, 102, 204, 0.02);
}

.vault-drop-zone.active {
    border-color: #0066cc;
    background: rgba(0, 102, 204, 0.05);
    transform: scale(1.02);
}

.vault-drop-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    opacity: 0.5;
    transition: all 0.3s ease;
    color: #ff6600;
}

.vault-drop-zone:hover .vault-drop-icon {
    opacity: 0.8;
    transform: translateY(-4px);
}

.vault-drop-text {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 500;
}

.vault-drop-subtext {
    font-size: 15px;
    color: #ff6600;
}

.vault-processing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.vault-processing-overlay.active {
    display: flex;
    animation: vaultFadeIn 0.3s ease;
}

.vault-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 102, 204, 0.2);
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: vaultSpin 1s linear infinite;
    margin-bottom: 24px;
}

.vault-processing-text {
    font-size: 18px;
    color: #0066cc;
    margin-bottom: 8px;
    font-weight: 600;
}

.vault-processing-subtext {
    font-size: 14px;
    color: #6a6a6a;
}

@keyframes vaultSpin {
    to { transform: rotate(360deg); }
}

@keyframes vaultFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Feature Grid */
.vault-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 140px;
}

.vault-feature-card {
    padding: 48px 40px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vault-feature-card:hover {
    background: #2a2a2a;
    border-color: rgba(0, 102, 204, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.vault-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0066cc 0%, #9333ea 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.vault-feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vault-feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #efefef;
}

/* Two Column Section */
.vault-two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 140px;
}

.vault-content-block h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
    line-height: 1.2;
    color: #1a1a1a;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vault-content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.vault-visual-block {
    position: relative;
    padding: 60px;
    background: #1a1a1a;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vault-file-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vault-file-item {
    padding: 20px 24px;
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: vaultSlideInFile 0.5s ease forwards;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vault-file-item:nth-child(1) { animation-delay: 0.1s; }
.vault-file-item:nth-child(2) { animation-delay: 0.2s; }
.vault-file-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes vaultSlideInFile {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vault-file-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066cc 0%, #9333ea 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.vault-file-info {
    flex: 1;
}

.vault-file-name {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 500;
}

.vault-file-status {
    font-size: 13px;
    color: #fbfbf9;
}

/* Benefits List */
.vault-benefits-section {
    margin-bottom: 140px;
}

.vault-benefits-section h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
    color: #1a1a1a;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vault-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.vault-benefit-item {
    padding: 32px;
    background: #1a1a1a;
    border-radius: 16px;
    border-left: 3px solid #0066cc;
}

.vault-benefit-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vault-benefit-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #efefef;
}

/* Final CTA */
.vault-final-cta {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.vault-final-cta h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
    line-height: 1.2;
    color: #1a1a1a;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vault-final-cta p {
    font-size: 20px;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.vault-cta-button {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #0066cc 0%, #9333ea 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.vault-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .vault-section {
        padding: 80px 24px 60px;
    }

    .vault-demo-container {
        padding: 40px 24px;
    }

    .vault-two-col-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vault-features-grid {
        grid-template-columns: 1fr;
    }

    .vault-visual-block {
        padding: 40px 24px;
    }
}

/* ===== METRICS HEADER SECTION ===== */
.metrics-header-section {
  padding: 5rem 0 !important;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.metrics-main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  color: #1a1a1a !important;
}

.metrics-header-section .item-wrapper {
  text-align: center !important;
  padding: 2rem 1rem;
}

.metrics-header-section .card-box {
  text-align: center !important;
}

.metric-number {
  font-size: clamp(5rem, 12vw, 8rem) !important;
  font-weight: 900 !important;
  color: var(--color-primary) !important;
  letter-spacing: -0.03em !important;
  line-height: 0.9 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 2px 4px rgba(255, 102, 0, 0.1);
}

.metric-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 1.25rem !important;
  color: #000 !important;
  line-height: 1.3 !important;
}

.metric-description {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: rgba(0,0,0,.65) !important;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 5rem 0 !important;
  background: #fafafa;
}

.contact-section .section-label {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.8;
  margin-bottom: 1rem !important;
}

.contact-section .section-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #000;
  margin-bottom: 1rem !important;
}

.contact-section .section-subtitle {
  font-size: 1.125rem !important;
  line-height: 1.6 !important;
  color: rgba(0,0,0,.65) !important;
  max-width: 700px;
  margin: 0 auto 3rem !important;
}

.contact-form .form-control {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  font-family: 'Saira', sans-serif;
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255,102,0,.1);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: rgba(0,0,0,.4);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn-primary {
  padding: 1rem 3rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,102,0,.3);
}

/* ===== FOOTER SECTION ===== */
.footer-section {
  padding: 4rem 0 2rem !important;
  background: #0a0a0a;
  color: #fff;
}

.footer-main {
  padding-bottom: 3rem;
}

.footer-logo img {
  max-width: 200px;
}

.footer-description {
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,.7) !important;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-icon:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 1.5rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  font-size: 0.9375rem !important;
  color: rgba(255,255,255,.7) !important;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Saira', sans-serif;
}

.footer-link:hover {
  color: var(--color-primary) !important;
}

.footer-contact {
  font-size: 0.9375rem !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,.7) !important;
}

.footer-contact strong {
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-divider {
  border-color: rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}

.footer-copyright {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,.5) !important;
  margin: 0 !important;
}

.footer-copyright .footer-link {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,.5) !important;
}

.footer-copyright .footer-link:hover {
  color: rgba(255,255,255,.8) !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 0 1.5rem !important;
  }
  
  .footer-main {
    padding-bottom: 2rem;
  }
  
  .footer-logo img {
    max-width: 150px;
  }
  
  .footer-title {
    margin-top: 2rem !important;
  }
}

/* ===== CONTACT SECTION STYLES ===== */

.contact-section {
    padding: 5rem 0 !important;
    background: #fafafa;
}

.contact-section .section-label {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem !important;
}

.contact-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    color: #000;
}

.contact-section .section-subtitle {
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
    color: rgba(0,0,0,.65) !important;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-content {
    margin-top: 3rem;
}

.contact-info {
    padding-right: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.info-text {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
}

.info-text strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #000;
    font-weight: 600;
}

.info-text a {
    color: var(--color-primary);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.contact-form .form-control {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 8px;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem !important;
}

@media (max-width: 768px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ===== FOOTER STYLES ===== */

.footer-section {
    background: #0a0a0a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-text {
    color: rgba(255,255,255,.65) !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
}

.footer-heading {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 0.875rem !important;
}

.footer-legal {
    text-align: right;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.legal-links li {
    display: inline-block;
}

.legal-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-links a:hover {
    color: rgba(255,255,255,.8);
}

.footer-disclaimer {
    color: rgba(255,255,255,.4) !important;
    font-size: 0.75rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-legal {
        text-align: left;
        margin-top: 1rem;
    }
    
    .legal-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ===== INDUSTRY RECOGNITION SECTION ===== */

.recognition-section {
    padding: 5rem 0 !important;
    background: #ffffff;
}

.recognition-label {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem !important;
}

.recognition-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    color: #000;
}

.awards-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), rgba(255, 102, 0, 0.02));
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.award-badge:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08), rgba(255, 102, 0, 0.04));
    transform: translateX(8px);
}

.award-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.award-details {
    flex: 1;
}

.award-title {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.25rem !important;
    color: #000 !important;
}

.award-event {
    font-size: 0.875rem !important;
    color: rgba(0,0,0,.6) !important;
    margin: 0 !important;
}

.recognition-text {
    padding-left: 2rem;
}

.recognition-text p {
    margin-bottom: 1.25rem !important;
}

.recognition-text p:last-child {
    color: var(--color-primary) !important;
    font-size: 1.125rem !important;
}

/* Footer Awards Strip */
.footer-awards {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 3rem;
}

.awards-strip {
    text-align: center;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.award-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,.5);
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-weight: 500;
}

.award-divider {
    color: rgba(255,255,255,.2);
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .recognition-text {
        padding-left: 0;
        margin-top: 2rem;
    }

    .awards-strip {
        flex-direction: column;
        gap: 0.75rem;
    }

    .award-divider {
        display: none;
    }
}


/* ===== PERFORMANCE COMPARISON SECTION UPDATES - FIXED ===== */

#header18-performance {
    background-image: url('../images/your-background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0 !important;
    min-height: 600px;
    display: flex;
    align-items: center;
}

#header18-performance::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

#header18-performance .container {
    position: relative;
    z-index: 2;
}

.performance-content-box {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.performance-content-box .mbr-section-title {
    text-align: left !important;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.performance-content-box .mbr-text {
    text-align: left !important;
    line-height: 1.8 !important;
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.performance-content-box .mbr-white {
    color: #ffffff !important;
}

.performance-content-box .mbr-section-btn {
    text-align: left !important;
}

@media (max-width: 768px) {
    #header18-performance {
        min-height: auto;
        padding: 60px 0 !important;
    }
    
    .performance-content-box {
        padding: 2rem 1.5rem;
    }
}

/* ===== FOOTER SOCIAL LINKS ===== */

.footer-social {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 0.5rem 0;
}

.social-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link:hover svg {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .footer-social {
        margin-top: 1rem;
    }
}
