/**
 * JBOMS Custom Styles
 * Full Design System Implementation
 * Based on Next.js Tailwind Configuration
 */

/* ============================================
   CSS VARIABLES - JBOMS BRAND COLORS
   ============================================ */
:root {
  /* === JBOMS BRAND COLORS - CORE SYSTEM === */
  
  /* Primary Colors */
  --color-jboms-black: #000000;
  --color-jboms-white: #ffffff;
  --color-jboms-orange: #f97316;
  
  /* === BLACK PALETTE === */
  --color-jboms-black-50: #f8f9fa;
  --color-jboms-black-100: #f1f3f4;
  --color-jboms-black-200: #e8eaed;
  --color-jboms-black-300: #dadce0;
  --color-jboms-black-400: #9aa0a6;
  --color-jboms-black-500: #5f6368;
  --color-jboms-black-600: #3c4043;
  --color-jboms-black-700: #202124;
  --color-jboms-black-800: #191919;
  --color-jboms-black-900: #0d0d0d;
  --color-jboms-black-950: #000000;
  
  /* === WHITE PALETTE === */
  --color-jboms-white-50: #ffffff;
  --color-jboms-white-100: #fefefe;
  --color-jboms-white-200: #fdfdfd;
  --color-jboms-white-300: #fcfcfc;
  --color-jboms-white-400: #fafafa;
  --color-jboms-white-500: #f7f7f7;
  --color-jboms-white-600: #f0f0f0;
  --color-jboms-white-700: #e8e8e8;
  --color-jboms-white-800: #e0e0e0;
  --color-jboms-white-900: #d8d8d8;
  
  /* === ORANGE PALETTE === */
  --color-jboms-orange-50: #fff7ed;
  --color-jboms-orange-100: #ffedd5;
  --color-jboms-orange-200: #fed7aa;
  --color-jboms-orange-300: #fdba74;
  --color-jboms-orange-400: #fb923c;
  --color-jboms-orange-500: #f97316;
  --color-jboms-orange-600: #ea580c;
  --color-jboms-orange-700: #c2410c;
  --color-jboms-orange-800: #9a3412;
  --color-jboms-orange-900: #7c2d12;
  --color-jboms-orange-950: #431407;
  
  /* === GRAY PALETTE === */
  --color-jboms-gray-50: #f9fafb;
  --color-jboms-gray-100: #f3f4f6;
  --color-jboms-gray-200: #e5e7eb;
  --color-jboms-gray-300: #d1d5db;
  --color-jboms-gray-400: #9ca3af;
  --color-jboms-gray-500: #6b7280;
  --color-jboms-gray-600: #4b5563;
  --color-jboms-gray-700: #374151;
  --color-jboms-gray-800: #1f2937;
  --color-jboms-gray-900: #111827;
  --color-jboms-gray-950: #030712;
  
  /* === SHADOWS === */
  --shadow-orange: 0 4px 14px 0 rgba(249, 115, 22, 0.15);
  --shadow-orange-lg: 0 8px 30px 0 rgba(249, 115, 22, 0.25);
  --shadow-orange-xl: 0 20px 50px 0 rgba(249, 115, 22, 0.35);
  --shadow-black: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
  --shadow-black-lg: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(249, 115, 22, 0.5);
  --shadow-glow-lg: 0 0 60px rgba(249, 115, 22, 0.3);
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

body.jboms-theme {
  background: var(--color-jboms-black) !important;
  color: var(--color-jboms-white) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-feature-settings: "rlig" 1, "calt" 1;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Text Selection */
::selection {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  text-shadow: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
  padding-bottom: 12px;
}

h1 { font-size: 2.5rem; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 800; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

/* JBOMS Custom Typography */
.text-hero {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.text-display {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.text-heading {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Responsive Typography Adjustments */
@media (max-width: 640px) {
  .text-hero {
    font-size: clamp(2rem, 12vw, 4rem);
  }
  
  .text-display {
    font-size: clamp(1.5rem, 8vw, 3rem);
  }
  
  .text-heading {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }
}

/* ============================================
   LINKS
   ============================================ */
a {
  color: var(--color-jboms-orange-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-jboms-orange-600);
}

a:visited {
  color: var(--color-jboms-orange-700);
}

a:focus-visible {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
button,
.button,
.wp-block-button__link {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-image: none;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 2px;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

html {
  scrollbar-width: none;
}

.scrollbar-visible::-webkit-scrollbar {
  width: 8px;
}

.scrollbar-visible::-webkit-scrollbar-track {
  background: var(--color-jboms-gray-100);
}

.scrollbar-visible::-webkit-scrollbar-thumb {
  background: var(--color-jboms-orange-400);
  border-radius: 4px;
}

.scrollbar-visible::-webkit-scrollbar-thumb:hover {
  background: var(--color-jboms-orange-500);
}

/* ============================================
   NAVIGATION / HEADER
   ============================================ */
.jboms-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease;
  background: transparent;
}

.jboms-header.scrolled {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.jboms-header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.jboms-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10001;
}

.jboms-logo a {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  letter-spacing: -0.025em;
  position: relative;
  display: inline-block;
}

.jboms-logo a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-jboms-orange-500);
  transition: width 0.3s ease;
}

.jboms-logo a:hover::after {
  width: 100%;
}

/* Desktop Navigation */
.jboms-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-nav-desktop {
    display: flex;
  }
}

.jboms-nav-desktop .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jboms-nav-desktop .menu > li {
  position: relative;
}

.jboms-nav-desktop .menu > li > a {
  color: var(--color-jboms-white);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  display: inline-block;
  position: relative;
}

.jboms-nav-desktop .menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-jboms-orange-500);
  transition: width 0.3s ease;
}

.jboms-nav-desktop .menu > li > a:hover::after,
.jboms-nav-desktop .menu > li > a:hover {
  color: var(--color-jboms-orange-500);
}

.jboms-nav-desktop .menu > li > a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.jboms-nav-desktop .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 12rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.25rem;
  border: 1px solid var(--color-jboms-gray-800);
  box-shadow: var(--shadow-black-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.jboms-nav-desktop .menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jboms-nav-desktop .menu .sub-menu li {
  margin: 0;
}

.jboms-nav-desktop .menu .sub-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-jboms-gray-300);
  transition: all 0.2s ease;
}

.jboms-nav-desktop .menu .sub-menu li a:hover {
  color: var(--color-jboms-orange-500);
  background: rgba(249, 115, 22, 0.1);
}

.jboms-nav-desktop .menu .sub-menu li:first-child a {
  border-radius: 0.25rem 0.25rem 0 0;
}

.jboms-nav-desktop .menu .sub-menu li:last-child a {
  border-radius: 0 0 0.25rem 0.25rem;
}

/* CTA Button in Header */
.jboms-header-cta {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  display: inline-block;
}

.jboms-header-cta:hover {
  background: var(--color-jboms-orange-600);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
  color: var(--color-jboms-black);
}

/* Mobile Menu Toggle */
.jboms-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

@media (min-width: 768px) {
  .jboms-mobile-toggle {
    display: none;
  }
}

.jboms-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-jboms-white);
  transition: all 0.3s ease;
  display: block;
}

.jboms-mobile-toggle span:not(:last-child) {
  margin-bottom: 4px;
}

.jboms-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.jboms-mobile-toggle.active span:nth-child(2) {
  transform: rotate(-45deg) translateY(-6px);
}

/* Mobile Menu */
.jboms-nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-jboms-black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.jboms-nav-mobile.active {
  transform: translateX(0);
}

.jboms-nav-mobile .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.jboms-nav-mobile .menu li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
}

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

.jboms-nav-mobile .menu li:nth-child(1) { transition-delay: 0.1s; }
.jboms-nav-mobile .menu li:nth-child(2) { transition-delay: 0.2s; }
.jboms-nav-mobile .menu li:nth-child(3) { transition-delay: 0.3s; }
.jboms-nav-mobile .menu li:nth-child(4) { transition-delay: 0.4s; }
.jboms-nav-mobile .menu li:nth-child(5) { transition-delay: 0.5s; }

.jboms-nav-mobile .menu li a {
  color: var(--color-jboms-white);
  font-size: 3rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.jboms-nav-mobile .menu li a:hover {
  color: var(--color-jboms-orange-500);
}

.jboms-nav-mobile .menu .sub-menu {
  list-style: none;
  padding: 1rem 0 0 0;
  margin: 0;
}

.jboms-nav-mobile .menu .sub-menu li {
  margin: 0.5rem 0;
}

.jboms-nav-mobile .menu .sub-menu li a {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-300);
}

.jboms-nav-mobile .jboms-header-cta {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  transition-delay: 0.6s;
}

.jboms-nav-mobile.active .jboms-header-cta {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   NESTED MENU STYLES - DESKTOP
   ============================================ */

/* Chevron icons */
.jboms-chevron-down {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.jboms-chevron-right {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

/* Main dropdown (Services) */
.jboms-nav-desktop .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 12rem;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.5rem;
  border: 1px solid var(--color-jboms-gray-700);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 1000;
}

.jboms-nav-desktop .menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Second level dropdown (Marketing, Sales, Technology) */
.jboms-nav-desktop .menu .sub-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.5rem;
  min-width: 11rem;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.5rem;
  border: 1px solid var(--color-jboms-gray-700);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.2s ease;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 1001;
}

.jboms-nav-desktop .menu .menu-item-has-children:hover .sub-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Submenu items styling */
.jboms-nav-desktop .menu .sub-menu li {
  margin: 0;
  position: relative;
}

.jboms-nav-desktop .menu .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: var(--color-jboms-gray-300);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.jboms-nav-desktop .menu .sub-menu li a:hover {
  color: var(--color-jboms-orange-500);
  background: rgba(249, 115, 22, 0.1);
}

/* Second level submenu items */
.jboms-nav-desktop .menu .sub-sub-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-jboms-gray-300);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.jboms-nav-desktop .menu .sub-sub-menu li a:hover {
  color: var(--color-jboms-orange-500);
  background: rgba(249, 115, 22, 0.1);
}

/* Chevron rotation on hover */
.jboms-nav-desktop .menu > li:hover .jboms-chevron-down {
  transform: rotate(180deg);
}

.jboms-nav-desktop .menu .menu-item-has-children:hover .jboms-chevron-right {
  transform: rotate(90deg);
}

/* ============================================
   NESTED MENU STYLES - MOBILE
   ============================================ */

/* Mobile menu structure */
.jboms-nav-mobile .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.jboms-nav-mobile .menu > li {
  margin: 0;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  width: 100%;
  display: block;
}

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

/* Mobile menu items */
.jboms-nav-mobile .menu li {
  width: 100%;
}

.jboms-nav-mobile .menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-jboms-white);
  font-size: 2rem;
  font-weight: 700;
  padding: 1rem 0;
  text-decoration: none;
  transition: color 0.2s ease;
  width: 100%;
  text-align: center;
}

.jboms-nav-mobile .menu-link span {
  flex-grow: 1;
}

.jboms-nav-mobile .menu-link:hover {
  color: var(--color-jboms-orange-500);
}

/* Submenu toggle button */
.submenu-toggle {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}

.chevron-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.submenu-toggle.active .chevron-icon {
  transform: rotate(180deg);
}

/* First level submenu (Services) */
.jboms-nav-mobile .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.jboms-nav-mobile .sub-menu.active {
  max-height: 1000px;
}

.jboms-nav-mobile .sub-menu .menu-link {
  font-size: 1.5rem;
  color: var(--color-jboms-gray-300);
  padding: 0.75rem 1rem;
}

.jboms-nav-mobile .sub-menu .menu-link:hover {
  color: var(--color-jboms-orange-500);
}

/* Second level submenu (Marketing, Sales, Technology) */
.jboms-nav-mobile .sub-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.25rem;
  margin-top: 0.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.jboms-nav-mobile .sub-sub-menu.active {
  max-height: 500px;
}

.jboms-nav-mobile .sub-sub-menu li a {
  display: block;
  color: var(--color-jboms-gray-400);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jboms-nav-mobile .sub-sub-menu li a:hover {
  color: var(--color-jboms-orange-500);
}

/* Simple menu items (no submenu) */
.jboms-nav-mobile .menu > li:not(.has-submenu) a {
  color: var(--color-jboms-white);
  font-size: 2rem;
  font-weight: 700;
  padding: 1rem 0;
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: center;
}

.jboms-nav-mobile .menu > li:not(.has-submenu) a:hover {
  color: var(--color-jboms-orange-500);
}

/* Mobile CTA button */
.jboms-nav-mobile .jboms-header-cta {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  transition-delay: 0.6s;
  display: inline-block;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}

.jboms-nav-mobile.active .jboms-header-cta {
  opacity: 1;
  transform: translateX(0);
}

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

@media (max-width: 767px) {
  /* Adjust submenu positioning for smaller screens */
  .jboms-nav-desktop .menu .sub-sub-menu {
    left: 0;
    top: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    transform: translateY(-10px);
  }
  
  .jboms-nav-desktop .menu .menu-item-has-children:hover .sub-sub-menu {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .jboms-nav-mobile .menu-link {
    font-size: 1.5rem;
  }
  
  .jboms-nav-mobile .sub-menu .menu-link {
    font-size: 1.25rem;
  }
  
  .jboms-nav-mobile .sub-sub-menu li a {
    font-size: 1rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .jboms-nav-desktop .menu .sub-menu,
  .jboms-nav-desktop .menu .sub-sub-menu,
  .jboms-nav-mobile .sub-menu,
  .jboms-nav-mobile .sub-sub-menu,
  .chevron-icon,
  .jboms-chevron-down,
  .jboms-chevron-right {
    transition: none !important;
  }
}

/* Focus states for keyboard navigation */
.jboms-nav-desktop .menu a:focus-visible,
.jboms-nav-mobile .menu a:focus-visible,
.submenu-toggle:focus-visible {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .jboms-nav-desktop .menu .sub-menu,
  .jboms-nav-desktop .menu .sub-sub-menu {
    border-width: 2px;
    background: rgba(0, 0, 0, 0.98);
  }
}

/* ============================================
   BUTTON GLOW COMPONENT
   ============================================ */
.jboms-button-glow {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.jboms-button-glow .absolute {
  position: absolute;
}

.jboms-button-glow .-inset-1 {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}

.jboms-button-glow .-inset-0\.5 {
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
}

.jboms-button-glow .bg-gradient-to-r {
  background: linear-gradient(90deg, #f97316 0%, #fbbf24 50%, #f97316 100%);
  background-size: 200% 200%;
}

.jboms-button-glow .rounded-2xl {
  border-radius: 1rem;
}

.jboms-button-glow .opacity-40 {
  opacity: 0.4;
}

.jboms-button-glow:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.jboms-button-glow .blur-sm {
  filter: blur(4px);
}

.jboms-button-glow .animate-gradient-rotate {
  animation: gradient-rotate 3s ease infinite;
}

.jboms-button-glow .relative {
  position: relative;
  z-index: 1;
}

.jboms-button-glow .bg-white {
  background: white;
}

.jboms-button-glow .text-black {
  color: black;
}

.jboms-button-glow:hover .hover\:text-orange-500 {
  color: var(--color-jboms-orange-500);
}

.jboms-button-glow .font-bold {
  font-weight: 700;
}

.jboms-button-glow .tracking-wide {
  letter-spacing: 0.025em;
}

.jboms-button-glow .transition-all {
  transition: all 0.3s ease;
}

.jboms-button-glow:hover .group-hover\:scale-\[1\.02\] {
  transform: scale(1.02);
}

.jboms-button-glow:hover .group-hover\:bg-gray-50 {
  background: #f9fafb;
}

/* Button Sizes */
.jboms-button-glow .px-12 { padding-left: 3rem; padding-right: 3rem; }
.jboms-button-glow .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.jboms-button-glow .text-lg { font-size: 1.125rem; }

.jboms-button-glow .px-16 { padding-left: 4rem; padding-right: 4rem; }
.jboms-button-glow .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.jboms-button-glow .text-xl { font-size: 1.25rem; }

/* ============================================
   BACKGROUND UTILITIES
   ============================================ */
.bg-grid {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-grid-orange {
  background-image: 
    linear-gradient(rgba(249, 115, 22, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-grid-dark {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text,
.text-gradient-orange {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange-black {
  background: linear-gradient(135deg, #f97316 0%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   HOVER EFFECTS
   ============================================ */
.hover-glow {
  transition: box-shadow 300ms ease-out;
}

.hover-glow:hover {
  box-shadow: var(--shadow-glow);
}

.hover-glow-lg {
  transition: box-shadow 300ms ease-out;
}

.hover-glow-lg:hover {
  box-shadow: var(--shadow-glow-lg);
}

/* ============================================
   TEXT SHADOWS
   ============================================ */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-orange {
  text-shadow: 2px 2px 4px rgba(249, 115, 22, 0.5);
}

.text-shadow-white {
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

/* ============================================
   GLASSMORPHISM
   ============================================ */
.glass-orange {
  background: rgba(249, 115, 22, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.glass-black {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.glass-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(249, 115, 22, 0.5); }
  100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.8), 0 0 30px rgba(249, 115, 22, 0.6); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes infinite-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

@keyframes fade-in-dot {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* Animation Classes */
.animate-fade-in { animation: fadeIn 1s ease-out; }
.animate-slide-up { animation: slideUp 0.7s ease-out; }
.animate-slide-in-left { animation: slideInLeft 0.5s ease-out; }
.animate-slide-in-right { animation: slideInRight 0.5s ease-out; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite alternate; }
.animate-pulse-slow { animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-gradient-rotate { 
  background-size: 200% 200%;
  animation: gradient-rotate 3s ease infinite; 
}
.animate-infinite-scroll { 
  animation: infinite-scroll 40s linear infinite;
  will-change: transform;
}
.animate-fade-in-dot {
  animation: fade-in-dot 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.jboms-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.jboms-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.jboms-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  padding-top: 4rem;
  margin-top: 6rem;
}

.jboms-hero-title {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
}

.jboms-hero-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-hero-title .dot {
  position: absolute;
  right: -2rem;
  bottom: 10%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
}

.jboms-hero-tagline {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-jboms-gray-300);
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.jboms-hero-tagline .highlight {
  color: var(--color-jboms-white);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.jboms-hero-tagline .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-jboms-orange-500);
  transition: width 1s ease-out;
  transition-delay: 1.5s;
}

.jboms-hero-tagline .highlight.underline-active::after {
  width: 100%;
}

.jboms-hero-cta {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.jboms-hero-subtitle {
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  margin-top: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   PARTNERS CAROUSEL
   ============================================ */
.jboms-partners-carousel {
  margin-top: 4rem;
  margin-bottom: 2rem;
  position: relative;
}

.jboms-partners-track {
  overflow: hidden;
  position: relative;
}

.jboms-partners-scroll {
  display: flex;
  animation: infinite-scroll 40s linear infinite;
  will-change: transform;
}

.jboms-partner-item {
  flex-shrink: 0;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center; 
  min-width: 140px;
  height: 60px;
}

.jboms-partner-item img {
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.jboms-partner-item:hover img {
  opacity: 1;
}

.jboms-partners-fade-left,
.jboms-partners-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10rem;
  pointer-events: none;
  z-index: 10;
}

.jboms-partners-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--color-jboms-black) 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
}

.jboms-partners-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--color-jboms-black) 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.jboms-philosophy {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-philosophy-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .jboms-philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.jboms-philosophy-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  position: relative;
}

.jboms-philosophy-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.5s ease-out;
}

.jboms-philosophy-word.visible {
  opacity: 1;
  transform: translateY(0);
}

.jboms-philosophy-word.white { color: var(--color-jboms-white); }
.jboms-philosophy-word.gray { color: var(--color-jboms-gray-600); }
.jboms-philosophy-word.light { color: var(--color-jboms-gray-300); }

.jboms-philosophy-text {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-400);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.jboms-philosophy-text.highlight {
  color: var(--color-jboms-gray-200);
  font-weight: 500;
}

/* ============================================
   RESULTS METRICS SECTION
   ============================================ */
.jboms-results {
  padding: 6rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-results-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jboms-result-item {
  text-align: center;
}

.jboms-result-metric {
  font-size: clamp(3.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--color-jboms-white);
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.jboms-result-label {
  color: var(--color-jboms-gray-500);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.jboms-services-home {
  padding: 8rem 0;
  background: var(--color-jboms-gray-100);
  border-top: 1px solid var(--color-jboms-gray-300);
}

.jboms-services-container-home {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-services-header-home {
  margin-bottom: 6rem;
}

.jboms-services-title-home {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-black);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.jboms-services-title-home .text-gray {
  color: var(--color-jboms-gray-600);
}

.jboms-services-grid-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .jboms-services-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-service-card-home {
  border-top: 1px solid var(--color-jboms-gray-300);
  padding-top: 2rem;
}

.jboms-service-header-home {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.jboms-service-title-home {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-jboms-black);
  letter-spacing: -0.025em;
}

.jboms-service-number-home {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--color-jboms-gray-300);
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
}

.jboms-service-card-home:hover .jboms-service-number-home {
  color: var(--color-jboms-orange-500);
}

.jboms-service-subtitle-home {
  font-size: 1.125rem;
  color: var(--color-jboms-gray-700);
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

.jboms-service-description-home {
  color: var(--color-jboms-gray-600);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.jboms-service-bullets-home {
  margin-bottom: 2rem;
}

.jboms-service-bullet-home {
  display: flex;
  align-items: center;
  color: var(--color-jboms-gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.jboms-service-bullet-dot-home {
  width: 6px;
  height: 6px;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.jboms-service-button-home {
  display: inline-block;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-white);
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 1rem;
  transition: all 0.2s ease;
  margin-top: 2rem;
}

.jboms-service-button-home:hover {
  background: var(--color-jboms-orange-600);
  transform: scale(1.05);
  color: var(--color-jboms-black);
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.jboms-approach {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-approach-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.jboms-approach-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.jboms-approach-title .text-gray {
  color: var(--color-jboms-gray-600);
}

.jboms-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .jboms-approach-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jboms-approach-step {
  text-align: left;
}

.jboms-approach-number {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--color-jboms-gray-300);
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.jboms-approach-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.025em;
}

.jboms-approach-step-desc {
  color: var(--color-jboms-gray-500);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.jboms-testimonials {
  padding: 8rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-testimonials-header {
  margin-bottom: 6rem;
}

.jboms-testimonials-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-testimonials-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-testimonials-subtitle {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
}

.jboms-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .jboms-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-testimonial-card {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 2rem;
  background: rgba(31, 41, 55, 0.5);
  transition: border-color 0.3s ease;
  text-align: center;
}

.jboms-testimonial-card:hover {
  border-color: var(--color-jboms-gray-600);
}

.jboms-testimonial-stars {
  display: flex;
  align-items: center;   /* centra cada estrella */
  line-height: 1;        /* elimina espacio vertical raro */
}

.jboms-star {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;         /* asegura que el svg esté centrado */
  align-items: center;
}

.jboms-star.filled {
  color: #fbbf24;
}

.jboms-star.empty {
  color: var(--color-jboms-gray-600);
}

.jboms-testimonial-result {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.jboms-testimonial-timeframe {
  font-size: 0.875rem;
  color: var(--color-jboms-gray-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.jboms-testimonial-quote {
  color: var(--color-jboms-gray-400);
  line-height: 1.6;
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.jboms-testimonial-client {
  display: flex;
  align-items: center;
}

.jboms-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.jboms-testimonial-name {
  color: var(--color-jboms-white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.jboms-testimonial-position {
  color: var(--color-jboms-gray-500);
  font-size: 0.875rem;
}

/* Trustpilot Section */
.jboms-trustpilot {
  text-align: center;
  padding-top: 1rem;
}

.jboms-trustpilot-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.jboms-trustpilot-logo {
  max-width: 160px;
  height: auto;
}

.jboms-trustpilot-rating {
  display: flex;
  align-items: center;   /* centra vertical */
  gap: 0.75rem;
}

.jboms-trustpilot-score {
  display: flex;
  align-items: center;   /* centra el número con las estrellas */
  line-height: 1;        /* ajusta altura de línea */
}

.jboms-trustpilot-text {
  color: var(--color-jboms-gray-400);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.jboms-trustpilot-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-jboms-white);
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.2s ease;
  gap: 0.5rem;
}

.jboms-trustpilot-link:hover {
  color: var(--color-jboms-orange-500);
}

.jboms-trustpilot-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.jboms-final-cta {
  padding: 8rem 0;
  background: var(--color-jboms-black);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-final-cta-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.jboms-final-cta-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.jboms-final-cta-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-final-cta-text {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  line-height: 1.8;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.jboms-final-cta-button {
  margin-bottom: 1.5rem;
}

.jboms-final-cta-contact {
  color: var(--color-jboms-gray-600);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
}

/* ============================================
   FOOTER
   ============================================ */
.jboms-footer {
  background: var(--color-jboms-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.jboms-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.jboms-footer-main {
  padding: 4rem 0;
}

.jboms-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jboms-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Brand Column */
.jboms-footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .jboms-footer-brand {
    grid-column: span 1;
  }
}

.jboms-footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.jboms-footer-logo-text {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  letter-spacing: -0.025em;
}

.jboms-footer-description {
  color: var(--color-jboms-gray-400);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 24rem;
}

.jboms-footer-email {
  display: block;
  color: var(--color-jboms-orange-500);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.jboms-footer-email:hover {
  color: var(--color-jboms-orange-400);
}

.jboms-footer-status {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.jboms-footer-status-dot {
  width: 12px;
  height: 12px;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.jboms-footer-status-text {
  color: var(--color-jboms-white);
  font-weight: 500;
}

.jboms-footer-trial {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.jboms-footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jboms-footer-social-link {
  color: var(--color-jboms-gray-400);
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.jboms-footer-social-link:hover {
  color: var(--color-jboms-orange-500);
}

/* ============================================
   FIX PARA ICONOS DE REDES SOCIALES - FOOTER
   ============================================ */

/* Footer Social Links - Asegurar que los SVGs sean visibles */
.jboms-footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jboms-footer-social-link {
  color: var(--color-jboms-gray-400);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.jboms-footer-social-link:hover {
  color: var(--color-jboms-orange-500);
}

/* IMPORTANTE: Estilos específicos para los SVGs */
.jboms-footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  display: block;
}

/* Asegurar que los SVGs hereden el color del padre */
.jboms-footer-social-link svg path {
  fill: inherit;
}

/* También asegurar que funcione con las clases w-5 h-5 */
.jboms-footer-social-link .w-5 {
  width: 1.25rem;
}

.jboms-footer-social-link .h-5 {
  height: 1.25rem;
}

/* Fallback para navegadores más antiguos */
.jboms-footer-social-link svg * {
  fill: currentColor;
}


/* Footer Sections */
.jboms-footer-section h3 {
  color: var(--color-jboms-white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.jboms-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jboms-footer-menu li {
  margin-bottom: 0.75rem;
}

.jboms-footer-menu a {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.jboms-footer-menu a:hover {
  color: var(--color-jboms-orange-500);
}


/* Footer Bottom */
.jboms-footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jboms-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .jboms-footer-bottom-inner {
    flex-direction: row;
    text-align: left;
  }
}

.jboms-footer-copyright {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
}

.jboms-footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.jboms-footer-legal a {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.jboms-footer-legal a:hover {
  color: var(--color-jboms-orange-500);
}

/* Footer Background Effects */
.jboms-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.jboms-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.jboms-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9998;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.jboms-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.jboms-scroll-top:hover {
  background: var(--color-jboms-orange-600);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.jboms-scroll-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.jboms-scroll-top:hover svg {
  transform: translateY(-4px);
}

/* ============================================
   ACCESSIBILITY & PRINT STYLES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .jboms-header,
  .jboms-scroll-top,
  .jboms-nav-mobile,
  .bg-grid,
  .hover-glow,
  video {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .text-white {
    color: black !important;
  }
  
  .bg-black,
  .bg-gray-950,
  .bg-gray-900,
  .bg-gray-800 {
    background: white !important;
  }
}

@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;
  }
  
  .animate-infinite-scroll,
  .animate-gradient-rotate {
    animation: none !important;
  }
}

/* ============================================
   WORDPRESS SPECIFIC OVERRIDES
   ============================================ */
.jboms-theme .site-header,
.jboms-theme [data-header] {
  display: none !important;
}

.jboms-theme .site-footer,
.jboms-theme [data-footer] {
  display: none !important;
}

.jboms-theme .entry-content {
  max-width: 100%;
  padding: 0;
}

.jboms-theme .wp-block-group,
.jboms-theme .wp-block-cover {
  margin: 0;
  padding: 0;
}

/* Remove default WordPress margins/padding */
.jboms-theme .alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw;
  width: 100vw;
}

.jboms-theme .wp-site-blocks {
  padding: 0 !important;
}

.jboms-theme .is-layout-constrained > * {
  max-width: 100% !important;
}

/* Ensure proper spacing for content */
.jboms-content-wrapper {
  padding-top: 0;
}


/**
 * Path: Añade esto al FINAL de wp-content/themes/blocksy-child/assets/css/jboms-custom.css
 * JBOMS CSS Fixes
 * Correcciones para chevron, carrusel y dot naranja
 */

/* ============================================
   FIX 1: CHEVRON DOWN EN MENÚ
   ============================================ */

/* Hacer el chevron más pequeño y mantenerlo inline */
.jboms-chevron-down {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

/* Asegurar que el enlace del menú con dropdown mantiene los elementos inline */
.jboms-menu-item-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Rotar chevron cuando el dropdown está abierto */
.jboms-nav-desktop .menu > li:hover .jboms-chevron-down {
  transform: rotate(180deg);
}

/* ============================================
   FIX 2: CARRUSEL DE CLIENTES
   ============================================ */

/* Hacer el carrusel full width */
.jboms-partners-carousel {
  margin-top: 2rem;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.jboms-partners-track {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Animación más rápida (de 40s a 25s) */
.jboms-partners-scroll {
  display: flex;
  animation: infinite-scroll 25s linear infinite;
  will-change: transform;
}

/* IMPORTANTE: NO pausar en hover */
.jboms-partners-scroll:hover {
  animation-play-state: running !important;
}

.jboms-partner-item {
  flex-shrink: 0;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 60px;
}

.jboms-partner-item img {
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.jboms-partner-item:hover img {
  opacity: 1;
}

/* QUITAR los gradientes de fade */
.jboms-partners-fade-left,
.jboms-partners-fade-right {
  display: none !important;
}

/* Actualizar keyframe para animación más rápida */
@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

/* ============================================
   FIX 3: DOT NARANJA EN EXECUTE
   ============================================ */

/* Reposicionar el dot correctamente */
.jboms-hero-dot {
  display: inline-block;
  width: 0.15em;
  height: 0.15em;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-left: 0.05em;
  vertical-align: baseline;
  position: relative;
  top: 0.03em;
}

/* Asegurar que el hero title mantiene el dot inline */
.jboms-hero-title {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
  position: relative;
}

/* Para pantallas más pequeñas, ajustar el dot */
@media (max-width: 640px) {
  .jboms-hero-dot {
    width: 0.12em;
    height: 0.12em;
  }
}

/* ============================================
   CORRECCIONES ADICIONALES PARA MOBILE
   ============================================ */

/* Asegurar que el chevron en mobile también sea pequeño */
@media (max-width: 767px) {
  .jboms-nav-mobile .jboms-chevron-down {
    width: 14px;
    height: 14px;
    margin-left: 6px;
  }
}

/* Mejorar spacing del carrusel en mobile */
@media (max-width: 640px) {
  .jboms-partners-carousel {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .jboms-partner-item {
    margin: 0 1.5rem;
    min-width: 120px;
  }
  
  .jboms-partner-item img {
    max-width: 100px;
    max-height: 35px;
  }
}

/* ============================================
   OPTIMIZACIÓN DE RENDIMIENTO
   ============================================ */

/* Usar GPU acceleration para el carrusel */
.jboms-partners-scroll {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Smooth scrolling para todo el sitio */
html {
  scroll-behavior: smooth;
}

/* Asegurar que el carrusel no cause layout shifts */
.jboms-partners-track {
  contain: layout style paint;
}


/* ============================================
   MOBILE MENU - CORRECCIÓN COMPLETA
   ============================================ */

/* Contenedor principal del menú móvil */
.jboms-nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-jboms-black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 1rem;
  overflow-y: auto;
}

.jboms-nav-mobile.active {
  transform: translateX(0);
}

/* Menú principal - Forzar dirección vertical */
.jboms-nav-mobile .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* Items del menú principal */
.jboms-nav-mobile .menu > li {
  margin: 0;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  width: 100%;
  display: block;
}

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

/* Delays para animación */
.jboms-nav-mobile.active .menu > li:nth-child(1) { transition-delay: 0.1s; }
.jboms-nav-mobile.active .menu > li:nth-child(2) { transition-delay: 0.2s; }
.jboms-nav-mobile.active .menu > li:nth-child(3) { transition-delay: 0.3s; }
.jboms-nav-mobile.active .menu > li:nth-child(4) { transition-delay: 0.4s; }
.jboms-nav-mobile.active .menu > li:nth-child(5) { transition-delay: 0.5s; }

/* Links principales del menú móvil */
.jboms-nav-mobile .menu > li > a {
  color: var(--color-jboms-white);
  font-size: 2rem;
  font-weight: 700;
  transition: color 0.2s ease;
  display: block;
  text-decoration: none;
  padding: 0.25rem 0;
  line-height: 1.2;
}

.jboms-nav-mobile .menu > li > a:hover {
  color: var(--color-jboms-orange-500);
}

/* SUBMENU (Services) - Forzar vertical */
.jboms-nav-mobile .menu .sub-menu {
  list-style: none;
  padding: 0.5rem 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.jboms-nav-mobile .menu .sub-menu li {
  margin: 0;
  width: 100%;
  display: block;
  opacity: 1 !important;
  transform: none !important;
}

.jboms-nav-mobile .menu .sub-menu li a {
  font-size: 1.125rem !important;
  color: var(--color-jboms-gray-300) !important;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
  line-height: 1.2;
}

.jboms-nav-mobile .menu .sub-menu li a:hover {
  color: var(--color-jboms-orange-500) !important;
}

/* CTA Button en menú móvil */
.jboms-nav-mobile .jboms-header-cta {
  margin-top: 1.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  transition-delay: 0.6s;
  display: inline-block;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  border-radius: 0.25rem;
  font-weight: 700;
  text-decoration: none;
}

.jboms-nav-mobile.active .jboms-header-cta {
  opacity: 1;
  transform: translateX(0);
}

/* Prevenir scroll del body cuando el menú móvil está abierto */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ============================================
   MOBILE MENU TOGGLE (X Close Button)
   ============================================ */

/* Botón de toggle móvil */
.jboms-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
}

.jboms-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-jboms-white);
  transition: all 0.3s ease;
  display: block;
  position: absolute;
}

.jboms-mobile-toggle span:nth-child(1) {
  top: 8px;
}

.jboms-mobile-toggle span:nth-child(2) {
  top: 16px;
}

/* Estado activo - formar X */
.jboms-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}

.jboms-mobile-toggle.active span:nth-child(2) {
  transform: rotate(-45deg);
  top: 13px;
}

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

/* Para pantallas muy pequeñas */
@media (max-width: 375px) {
  .jboms-nav-mobile .menu > li > a {
    font-size: 1.75rem;
  }
  
  .jboms-nav-mobile .menu .sub-menu li a {
    font-size: 1rem !important;
  }
  
  .jboms-nav-mobile .jboms-header-cta {
    font-size: 0.875rem;
    padding: 0.75rem 1.75rem;
  }
  
  .jboms-nav-mobile .menu {
    gap: 0.75rem;
  }
  
  .jboms-nav-mobile .menu .sub-menu {
    gap: 0.375rem;
  }
}

/* Para pantallas medianas */
@media (min-width: 376px) and (max-width: 640px) {
  .jboms-nav-mobile .menu > li > a {
    font-size: 1.875rem;
  }
}

/* Ocultar menú móvil en desktop */
@media (min-width: 768px) {
  .jboms-mobile-toggle {
    display: none;
  }
  
  .jboms-nav-mobile {
    display: none !important;
  }
}

/* ============================================
   PREVENIR CONFLICTOS CON BLOCKSY
   ============================================ */

/* Asegurar que los estilos de Blocksy no interfieran */
.jboms-nav-mobile .menu,
.jboms-nav-mobile .menu > li,
.jboms-nav-mobile .menu .sub-menu,
.jboms-nav-mobile .menu .sub-menu li {
  all: unset;
  list-style: none;
}

/* Re-aplicar estilos necesarios después del reset */
.jboms-nav-mobile .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.jboms-nav-mobile .menu > li {
  display: block;
  width: 100%;
  text-align: center;
}

.jboms-nav-mobile .menu .sub-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding-top: 1rem;
}

.jboms-nav-mobile .menu .sub-menu li {
  display: block;
  width: 100%;
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */

/* Focus states para navegación por teclado */
.jboms-nav-mobile .menu a:focus-visible {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 4px;
  border-radius: 4px;
}

.jboms-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================
   ANIMACIONES SUAVES
   ============================================ */

/* Reducir movimiento para usuarios que lo prefieran */
@media (prefers-reduced-motion: reduce) {
  .jboms-nav-mobile,
  .jboms-nav-mobile .menu > li,
  .jboms-nav-mobile .jboms-header-cta,
  .jboms-mobile-toggle span {
    transition: none !important;
    animation: none !important;
  }
  
  .jboms-nav-mobile .menu > li {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ============================================
   ABOUT PAGE - HERO SECTION
   ============================================ */

.jboms-about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-about-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-jboms-black) 0%, var(--color-jboms-gray-900) 50%, var(--color-jboms-black) 100%);
  opacity: 0.9;
  z-index: 1;
}

.jboms-about-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-about-hero-inner {
  text-align: center;
  padding-top: 8rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

.jboms-about-hero-title {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
}

.jboms-about-hero-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-about-hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-jboms-gray-300);
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

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

/* ============================================
   ABOUT PAGE - PHILOSOPHY SECTION
   ============================================ */

.jboms-about-philosophy {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-about-philosophy-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-about-philosophy-header {
  margin-bottom: 6rem;
}

.jboms-about-philosophy-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-about-philosophy-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-about-philosophy-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  line-height: 1.6;
}

.jboms-about-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .jboms-about-philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-philosophy-card {
  position: relative;
}

.jboms-philosophy-card-border {
  border-top: 1px solid var(--color-jboms-gray-300);
  margin-bottom: 2rem;
}

.jboms-philosophy-card-content {
  padding-top: 2rem;
}

.jboms-philosophy-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.jboms-philosophy-card-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  letter-spacing: -0.025em;
}

.jboms-philosophy-card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-jboms-gray-700);
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
}

.jboms-philosophy-card:hover .jboms-philosophy-card-number {
  color: var(--color-jboms-orange-500);
}

.jboms-philosophy-card-description {
  color: var(--color-jboms-gray-400);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ============================================
   ABOUT PAGE - TEAM SECTION
   ============================================ */

.jboms-about-team {
  padding: 8rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-about-team-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-about-team-header {
  margin-bottom: 6rem;
}

.jboms-about-team-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-about-team-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-about-team-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  line-height: 1.6;
}

.jboms-team-members {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

@media (min-width: 640px) {
  .jboms-team-members {
    gap: 8rem;
  }
}

/* ============================================
   TEAM MEMBER CARD
   ============================================ */

.jboms-team-member {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .jboms-team-member {
    flex-direction: row;
    gap: 4rem;
  }
  
  .jboms-team-member-reverse {
    flex-direction: row-reverse;
  }
}

/* Image Section */
.jboms-team-member-image-wrapper {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .jboms-team-member-image-wrapper {
    width: 40%;
  }
}

.jboms-team-member-image-container {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-jboms-gray-700);
  background: linear-gradient(135deg, var(--color-jboms-gray-800) 0%, var(--color-jboms-gray-900) 100%);
}

@media (min-width: 640px) {
  .jboms-team-member-image-container {
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .jboms-team-member-image-container {
    height: 700px;
  }
}

.jboms-team-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.jboms-team-member-image-container:hover .jboms-team-member-image {
  transform: scale(1.05);
}

.jboms-team-member-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

/* Position Badge */
.jboms-team-member-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

@media (min-width: 640px) {
  .jboms-team-member-badge {
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
  }
}

.jboms-team-member-badge span {
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

@media (min-width: 640px) {
  .jboms-team-member-badge span {
    font-size: 0.875rem;
  }
}

/* Social Icons */
.jboms-team-member-social {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .jboms-team-member-social {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
}

.jboms-social-icon {
  background: rgba(31, 41, 55, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--color-jboms-white);
  padding: 0.5rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .jboms-social-icon {
    padding: 0.75rem;
  }
}

.jboms-social-icon:hover {
  color: var(--color-jboms-orange-500);
  background: rgba(55, 65, 81, 0.9);
  transform: scale(1.1);
}

.jboms-social-icon svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .jboms-social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Content Section */
.jboms-team-member-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .jboms-team-member-content {
    width: 60%;
  }
}

.jboms-team-member-header {
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .jboms-team-member-header {
    margin-bottom: 2rem;
  }
}

.jboms-team-member-name {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  line-height: 1;
}

@media (min-width: 640px) {
  .jboms-team-member-name {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .jboms-team-member-name {
    font-size: 3rem;
  }
}

/* Bio */
.jboms-team-member-bio {
  color: var(--color-jboms-gray-300);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  white-space: pre-line;
}

@media (min-width: 640px) {
  .jboms-team-member-bio {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

/* Achievements */
.jboms-team-member-achievements {
  margin-top: 2rem;
}

.jboms-achievements-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .jboms-achievements-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}

.jboms-achievements-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .jboms-achievements-list {
    gap: 1rem;
  }
}

.jboms-achievement-item {
  display: flex;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.jboms-achievement-item:hover .jboms-achievement-bullet {
  transform: scale(1.25);
}

.jboms-achievement-item:hover .jboms-achievement-text {
  color: var(--color-jboms-white);
}

.jboms-achievement-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

@media (min-width: 640px) {
  .jboms-achievement-bullet {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 1.5rem;
  }
}

.jboms-achievement-text {
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}

@media (min-width: 640px) {
  .jboms-achievement-text {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .jboms-achievement-text {
    font-size: 1.125rem;
  }
}

/* ============================================
   ABOUT PAGE - CTA SECTION
   ============================================ */

.jboms-about-cta {
  padding: 8rem 0;
  background: var(--color-jboms-black);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-about-cta-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.jboms-about-cta-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.jboms-about-cta-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-about-cta-text {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  line-height: 1.8;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.jboms-about-cta-button {
  margin-bottom: 1rem;
}

.jboms-about-cta-subtitle {
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

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

@media (max-width: 640px) {
  .jboms-about-hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .jboms-about-hero-inner {
    padding-top: 6rem;
  }
  
  .jboms-about-philosophy,
  .jboms-about-team,
  .jboms-about-cta {
    padding: 4rem 0;
  }
  
  .jboms-about-philosophy-header,
  .jboms-about-team-header {
    margin-bottom: 3rem;
  }
  
  .jboms-about-philosophy-grid {
    gap: 2rem;
  }
  
  .jboms-team-members {
    gap: 4rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .jboms-about-hero-gradient,
  .jboms-about-hero-grid,
  .jboms-team-member-social,
  .jboms-about-cta-button {
    display: none !important;
  }
  
  .jboms-about-hero,
  .jboms-about-philosophy,
  .jboms-about-team,
  .jboms-about-cta {
    background: white !important;
    padding: 2rem 0 !important;
  }
  
  .jboms-about-hero-title,
  .jboms-about-philosophy-title,
  .jboms-about-team-title,
  .jboms-about-cta-title,
  .jboms-team-member-name,
  .jboms-achievements-title {
    color: black !important;
  }
  
  .jboms-team-member {
    page-break-inside: avoid;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .jboms-about-hero-inner,
  .jboms-team-member-image,
  .jboms-social-icon,
  .jboms-achievement-item {
    animation: none !important;
    transition: none !important;
  }
}



/**
 * Path: Añade esto al FINAL de wp-content/themes/blocksy-child/assets/css/jboms-custom.css
 * JBOMS Services Pages Styles
 * Shared styling for all service pages (Marketing, Sales, Technology, Consulting)
 */

/* ============================================
   SERVICES PAGES - HERO SECTION
   ============================================ */

.jboms-service-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-service-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-jboms-black) 0%, var(--color-jboms-gray-900) 50%, var(--color-jboms-black) 100%);
  opacity: 0.9;
  z-index: 1;
}

.jboms-service-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-service-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-service-hero-inner {
  text-align: center;
  padding-top: 8rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

.jboms-service-hero-title {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
}

.jboms-service-hero-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-service-hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-jboms-gray-300);
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 64rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ============================================
   SERVICES PAGES - METRICS SECTION
   ============================================ */

.jboms-service-metrics {
  padding: 6rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-service-metrics-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-service-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-service-metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jboms-metric-item {
  text-align: center;
}

.jboms-metric-value {
  font-size: clamp(3.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--color-jboms-white);
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.jboms-metric-label {
  color: var(--color-jboms-gray-500);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* ============================================
   SERVICES PAGES - SERVICES GRID SECTION
   ============================================ */

.jboms-service-list {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-service-list-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-service-list-header {
  margin-bottom: 6rem;
}

.jboms-service-list-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-service-list-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-service-list-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  line-height: 1.6;
}

.jboms-service-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .jboms-service-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Service Card */
.jboms-service-card {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 2rem;
  background: rgba(31, 41, 55, 0.5);
  transition: all 0.3s ease;
}

.jboms-service-card:hover {
  border-color: var(--color-jboms-orange-500);
}

.jboms-service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.jboms-service-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  flex: 1;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .jboms-service-card-title {
    font-size: 1.875rem;
  }
}

.jboms-service-card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-jboms-gray-700);
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.jboms-service-card:hover .jboms-service-card-number {
  color: var(--color-jboms-orange-500);
}

.jboms-service-card-description {
  color: var(--color-jboms-gray-400);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.jboms-service-card-features {
  margin-bottom: 2rem;
}

.jboms-service-card-features-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 1rem;
}

.jboms-service-card-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jboms-service-feature-item {
  display: flex;
  align-items: flex-start;
}

.jboms-service-feature-bullet {
  width: 6px;
  height: 6px;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 0.75rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.jboms-service-feature-text {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
}

.jboms-service-card-results {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 1rem;
  border-radius: 0.25rem;
}

.jboms-service-card-results-label {
  color: var(--color-jboms-orange-500);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.jboms-service-card-results-text {
  color: var(--color-jboms-white);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ============================================
   SERVICES PAGES - CASE STUDIES SECTION
   ============================================ */

.jboms-service-cases {
  padding: 8rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-service-cases-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-service-cases-header {
  margin-bottom: 6rem;
}

.jboms-service-cases-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-service-cases-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-service-cases-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  line-height: 1.6;
}

.jboms-service-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .jboms-service-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-case-study-card {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.jboms-case-study-card:hover {
  border-color: var(--color-jboms-orange-500);
}

.jboms-case-study-client {
  color: var(--color-jboms-orange-500);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.jboms-case-study-content {
  margin-bottom: 1.5rem;
}

.jboms-case-study-label {
  color: var(--color-jboms-white);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.jboms-case-study-text {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.jboms-case-study-result {
  background: var(--color-jboms-gray-800);
  padding: 1rem;
  border-radius: 0.25rem;
}

.jboms-case-study-result-label {
  color: var(--color-jboms-white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.jboms-case-study-result-text {
  color: var(--color-jboms-orange-500);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ============================================
   SERVICES PAGES - PROCESS SECTION
   ============================================ */

.jboms-service-process {
  padding: 8rem 0;
  background: var(--color-jboms-black);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-service-process-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-service-process-header {
  margin-bottom: 6rem;
}

.jboms-service-process-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-service-process-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-service-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-service-process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jboms-process-step {
  text-align: center;
}

.jboms-process-step-number {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--color-jboms-orange-500);
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.jboms-process-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.025em;
}

.jboms-process-step-description {
  color: var(--color-jboms-gray-500);
  line-height: 1.6;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .jboms-process-step-description {
    font-size: 1rem;
  }
}

/* ============================================
   SERVICES PAGES - APPROACH SECTION
   ============================================ */

.jboms-service-approach {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-service-approach-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-service-approach-header {
  margin-bottom: 6rem;
}

.jboms-service-approach-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-service-approach-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-service-approach-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  line-height: 1.6;
}

.jboms-service-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .jboms-service-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-approach-card {
  position: relative;
}

.jboms-approach-card-border {
  border-top: 1px solid var(--color-jboms-gray-300);
  margin-bottom: 2rem;
}

.jboms-approach-card-content {
  padding-top: 2rem;
}

.jboms-approach-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.jboms-approach-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  letter-spacing: -0.025em;
}

.jboms-approach-card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-jboms-gray-700);
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.jboms-approach-card:hover .jboms-approach-card-number {
  color: var(--color-jboms-gray-500);
}

.jboms-approach-card-description {
  color: var(--color-jboms-gray-400);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ============================================
   SERVICES PAGES - EXTRA CONTENT SECTIONS
   ============================================ */

.jboms-service-extra {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-service-extra-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-service-extra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .jboms-service-extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-service-extra-content h2 {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-service-extra-content h2 .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-service-extra-text {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-400);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.jboms-service-extra-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jboms-service-extra-item {
  display: flex;
  align-items: flex-start;
}

.jboms-service-extra-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.75rem;
  flex-shrink: 0;
}

.jboms-service-extra-item-content {
  flex: 1;
}

.jboms-service-extra-item-title {
  color: var(--color-jboms-white);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.jboms-service-extra-item-desc {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
}

.jboms-service-extra-box {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, transparent 100%);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.jboms-service-extra-box-title {
  text-align: center;
  margin-bottom: 2rem;
}

.jboms-service-extra-box-heading {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-jboms-orange-500);
  margin-bottom: 1rem;
}

.jboms-service-extra-box-subtitle {
  color: var(--color-jboms-white);
  font-size: 1.125rem;
}

.jboms-service-extra-box-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jboms-service-extra-box-item {
  display: flex;
  align-items: center;
  color: var(--color-jboms-gray-300);
}

.jboms-service-extra-box-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* ============================================
   SERVICES PAGES - CTA SECTION
   ============================================ */

.jboms-service-cta {
  padding: 8rem 0;
  background: var(--color-jboms-black);
  border-top: 1px solid var(--color-jboms-gray-800);
}

@media (min-width: 640px) {
  .jboms-service-cta {
    padding: 8rem 0;
  }
}

.jboms-service-cta-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.jboms-service-cta-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.jboms-service-cta-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-service-cta-text {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  line-height: 1.8;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.jboms-service-cta-button {
  margin-bottom: 1rem;
}

.jboms-service-cta-subtitle {
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

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

@media (max-width: 640px) {
  .jboms-service-hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .jboms-service-hero-inner {
    padding-top: 6rem;
  }
  
  .jboms-service-list,
  .jboms-service-cases,
  .jboms-service-process,
  .jboms-service-approach,
  .jboms-service-extra,
  .jboms-service-cta {
    padding: 4rem 0;
  }
  
  .jboms-service-card {
    padding: 1.5rem;
  }
}


/* ============================================
   CONTACT PAGE - HERO SECTION
   ============================================ */

.jboms-contact-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-contact-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-jboms-black) 0%, var(--color-jboms-gray-900) 50%, var(--color-jboms-black) 100%);
  opacity: 0.9;
  z-index: 1;
}

.jboms-contact-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-contact-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-contact-hero-inner {
  text-align: center;
  padding-top: 8rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

.jboms-contact-hero-title {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
}

.jboms-contact-hero-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-contact-hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-jboms-gray-300);
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 64rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.jboms-contact-hero-cta {
  text-align: center;
}

.jboms-contact-hero-benefits {
  color: var(--color-jboms-gray-300);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  letter-spacing: 0.025em;
}

.jboms-contact-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.jboms-btn-white {
  background: var(--color-jboms-white);
  color: var(--color-jboms-black);
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.jboms-btn-white:hover {
  background: var(--color-jboms-gray-100);
  color: var(--color-jboms-black);
}

.jboms-btn-orange {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.jboms-btn-orange:hover {
  background: var(--color-jboms-orange-600);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
  color: var(--color-jboms-black);
}

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

.jboms-contact-methods {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-contact-methods-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-contact-methods-header {
  margin-bottom: 6rem;
}

.jboms-contact-methods-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-contact-methods-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-contact-methods-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  line-height: 1.6;
}

.jboms-contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jboms-contact-methods-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jboms-contact-method-card {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 2rem;
  background: rgba(31, 41, 55, 0.5);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-decoration: none;
}

.jboms-contact-method-card:hover {
  border-color: var(--color-jboms-orange-500);
}

.jboms-contact-method-icon {
  color: var(--color-jboms-orange-500);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  transition: color 0.3s ease;
}

.jboms-contact-method-card:hover .jboms-contact-method-icon {
  color: var(--color-jboms-orange-400);
}

.jboms-contact-method-icon svg {
  width: 2rem;
  height: 2rem;
}

.jboms-contact-method-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.jboms-contact-method-card:hover .jboms-contact-method-title {
  color: var(--color-jboms-orange-500);
}

.jboms-contact-method-description {
  color: var(--color-jboms-gray-400);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.jboms-contact-method-action {
  color: var(--color-jboms-white);
  font-weight: 600;
}

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

.jboms-contact-form-section {
  padding: 8rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-contact-form-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-contact-form-header {
  margin-bottom: 4rem;
  text-align: center;
}

.jboms-contact-form-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-contact-form-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-contact-form-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.jboms-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.jboms-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-form-group,
.jboms-form-group-full {
  display: flex;
  flex-direction: column;
}

.jboms-form-label {
  color: var(--color-jboms-white);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.jboms-form-input,
.jboms-form-select,
.jboms-form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--color-jboms-gray-800);
  border: 1px solid var(--color-jboms-gray-600);
  color: var(--color-jboms-white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.jboms-form-input::placeholder,
.jboms-form-textarea::placeholder {
  color: var(--color-jboms-gray-400);
}

.jboms-form-input:focus,
.jboms-form-select:focus,
.jboms-form-textarea:focus {
  outline: none;
  border-color: var(--color-jboms-orange-500);
}

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

.jboms-form-submit {
  text-align: center;
  margin-top: 1rem;
}

.jboms-form-button {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 1.5rem 4rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.jboms-form-button:hover {
  background: var(--color-jboms-orange-600);
  transform: scale(1.05);
}

.jboms-form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.jboms-form-note {
  color: var(--color-jboms-gray-500);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.jboms-form-message {
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  text-align: center;
}

.jboms-form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgb(34, 197, 94);
  color: rgb(134, 239, 172);
}

.jboms-form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgb(239, 68, 68);
  color: rgb(252, 165, 165);
}

/* ============================================
   TEAM CONTACTS SECTION
   ============================================ */

.jboms-team-contacts {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-team-contacts-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-team-contacts-header {
  margin-bottom: 6rem;
  text-align: center;
}

.jboms-team-contacts-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-team-contacts-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-team-contacts-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.jboms-team-contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .jboms-team-contacts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-team-contact-card {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 2rem;
  background: rgba(31, 41, 55, 0.5);
  text-align: center;
  transition: all 0.3s ease;
}

.jboms-team-contact-card:hover {
  border-color: var(--color-jboms-orange-500);
}

.jboms-team-contact-photo {
  margin-bottom: 1.5rem;
}

.jboms-team-contact-photo img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid rgba(249, 115, 22, 0.2);
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.jboms-team-contact-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.5rem;
}

.jboms-team-contact-position {
  color: var(--color-jboms-orange-500);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.jboms-team-contact-expertise {
  color: var(--color-jboms-gray-400);
  margin-bottom: 1.5rem;
}

.jboms-team-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jboms-team-contact-email {
  display: block;
  background: var(--color-jboms-gray-800);
  color: var(--color-jboms-white);
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.jboms-team-contact-email:hover {
  background: var(--color-jboms-gray-700);
  color: var(--color-jboms-white);
}

.jboms-team-contact-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.jboms-social-linkedin,
.jboms-social-calendly {
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jboms-social-linkedin {
  background: rgb(10, 102, 194);
  color: var(--color-jboms-white);
}

.jboms-social-linkedin:hover {
  background: rgb(8, 82, 156);
  transform: scale(1.1);
}

.jboms-social-calendly {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
}

.jboms-social-calendly:hover {
  background: var(--color-jboms-orange-600);
  transform: scale(1.1);
}

.jboms-social-linkedin svg,
.jboms-social-calendly svg {
  width: 1.25rem;
  height: 1.25rem;
}


/* ============================================
   OFFICE INFORMATION SECTION
   ============================================ */

.jboms-office-info {
  padding: 8rem 0;
  background: var(--color-jboms-black);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-office-info-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-office-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .jboms-office-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.jboms-office-info-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-office-info-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-office-info-text {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-400);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.jboms-office-locations {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jboms-office-location {
  display: flex;
  align-items: flex-start;
}

.jboms-location-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-jboms-orange-500);
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.jboms-location-pulse {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jboms-location-pulse::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-jboms-black);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.jboms-location-title {
  color: var(--color-jboms-white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.jboms-location-address {
  color: var(--color-jboms-gray-400);
}

.jboms-quick-facts {
  background: var(--color-jboms-gray-900);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-jboms-gray-700);
}

.jboms-quick-facts-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 1.5rem;
}

.jboms-quick-facts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jboms-quick-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jboms-fact-label {
  color: var(--color-jboms-gray-400);
}

.jboms-fact-value {
  color: var(--color-jboms-white);
  font-weight: 600;
}

.jboms-fact-value-orange {
  color: var(--color-jboms-orange-500);
  font-weight: 600;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.jboms-contact-final-cta {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-contact-final-cta-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.jboms-contact-final-cta-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.jboms-contact-final-cta-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-contact-final-cta-text {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  line-height: 1.8;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.jboms-contact-final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.jboms-btn-white-large {
  background: var(--color-jboms-white);
  color: var(--color-jboms-black);
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.jboms-btn-white-large:hover {
  background: var(--color-jboms-gray-100);
  color: var(--color-jboms-black);
}

.jboms-btn-orange-large {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.jboms-btn-orange-large:hover {
  background: var(--color-jboms-orange-600);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
  color: var(--color-jboms-black);
}

.jboms-contact-final-cta-note {
  color: var(--color-jboms-gray-600);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}

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

@media (max-width: 640px) {
  .jboms-contact-hero,
  .jboms-contact-methods,
  .jboms-contact-form-section,
  .jboms-team-contacts,
  .jboms-office-info,
  .jboms-contact-final-cta {
    padding: 4rem 0;
  }
  
  .jboms-contact-hero-inner {
    padding-top: 6rem;
  }
  
  .jboms-contact-methods-header,
  .jboms-contact-form-header,
  .jboms-team-contacts-header {
    margin-bottom: 3rem;
  }
  
  .jboms-contact-hero-buttons,
  .jboms-contact-final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .jboms-btn-white,
  .jboms-btn-orange,
  .jboms-btn-white-large,
  .jboms-btn-orange-large {
    width: 100%;
    text-align: center;
  }
  
  .jboms-form-button {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .jboms-contact-hero-gradient,
  .jboms-contact-hero-grid,
  .jboms-contact-hero-buttons,
  .jboms-contact-final-cta-buttons,
  .jboms-team-contact-social,
  .jboms-form-button {
    display: none !important;
  }
  
  .jboms-contact-hero,
  .jboms-contact-methods,
  .jboms-contact-form-section,
  .jboms-team-contacts,
  .jboms-office-info,
  .jboms-contact-final-cta {
    background: white !important;
    padding: 2rem 0 !important;
  }
  
  .jboms-contact-hero-title,
  .jboms-contact-methods-title,
  .jboms-contact-form-title,
  .jboms-team-contacts-title,
  .jboms-office-info-title,
  .jboms-contact-final-cta-title {
    color: black !important;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .jboms-contact-hero-inner,
  .jboms-location-pulse::before,
  .jboms-form-button,
  .jboms-contact-method-card,
  .jboms-team-contact-card {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   LOADING STATES
   ============================================ */

.jboms-form-button.loading {
  position: relative;
  color: transparent;
}

.jboms-form-button.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid transparent;
  border-top-color: var(--color-jboms-black);
  border-radius: 50%;
  animation: button-loading-spinner 0.6s linear infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

/* ============================================
   FOCUS VISIBLE STATES (Accessibility)
   ============================================ */

.jboms-form-input:focus-visible,
.jboms-form-select:focus-visible,
.jboms-form-textarea:focus-visible,
.jboms-form-button:focus-visible,
.jboms-btn-white:focus-visible,
.jboms-btn-orange:focus-visible,
.jboms-btn-white-large:focus-visible,
.jboms-btn-orange-large:focus-visible,
.jboms-contact-method-card:focus-visible,
.jboms-team-contact-email:focus-visible,
.jboms-social-linkedin:focus-visible,
.jboms-social-calendly:focus-visible {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 2px;
}

/* ============================================
   HIGH CONTRAST MODE SUPPORT
   ============================================ */

@media (prefers-contrast: high) {
  .jboms-contact-method-card,
  .jboms-team-contact-card,
  .jboms-quick-facts {
    border-width: 2px;
  }
  
  .jboms-form-input,
  .jboms-form-select,
  .jboms-form-textarea {
    border-width: 2px;
  }
}


/* ============================================
   BLOG ARCHIVE - HERO SECTION
   ============================================ */

.jboms-blog-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-blog-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-jboms-black) 0%, var(--color-jboms-gray-900) 50%, var(--color-jboms-black) 100%);
  opacity: 0.9;
  z-index: 1;
}

.jboms-blog-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-blog-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-blog-hero-inner {
  text-align: center;
  padding-top: 8rem;
  margin-bottom: 4rem;
}

.jboms-blog-hero-title {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
}

.jboms-blog-hero-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-blog-hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-jboms-gray-300);
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   BLOG FEATURED ARTICLE
   ============================================ */

.jboms-blog-featured {
  padding: 8rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-blog-featured-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-blog-featured-header {
  margin-bottom: 4rem;
}

.jboms-blog-section-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-blog-section-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-blog-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .jboms-blog-featured-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.jboms-blog-featured-image-wrapper {
  position: relative;
}

.jboms-blog-featured-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.25rem;
}

.jboms-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jboms-blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.jboms-blog-featured-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.jboms-blog-featured-category span {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.25rem;
  display: inline-block;
}

.jboms-blog-post-meta {
  margin-bottom: 1rem;
}

.jboms-blog-post-meta-date {
  display: flex;
  align-items: center;
  color: var(--color-jboms-gray-500);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.jboms-meta-separator {
  margin: 0 0.5rem;
}

.jboms-blog-post-author {
  display: flex;
  align-items: center;
  color: var(--color-jboms-gray-400);
}

.jboms-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.jboms-blog-featured-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.jboms-blog-featured-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.jboms-blog-featured-title a:hover {
  color: var(--color-jboms-orange-500);
}

.jboms-blog-featured-excerpt {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-400);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.jboms-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.jboms-tag {
  background: var(--color-jboms-gray-800);
  color: var(--color-jboms-gray-300);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.jboms-blog-read-button {
  display: inline-block;
  background: var(--color-jboms-white);
  color: var(--color-jboms-black);
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.jboms-blog-read-button:hover {
  background: var(--color-jboms-gray-100);
  transform: translateY(-2px);
}

/* ============================================
   BLOG CATEGORY FILTER
   ============================================ */

.jboms-blog-filter {
  padding: 4rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-blog-filter-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-blog-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.jboms-filter-btn {
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  transition: all 0.2s ease;
  border-radius: 0.25rem;
  text-decoration: none;
  background: transparent;
  color: var(--color-jboms-gray-400);
  border: 1px solid var(--color-jboms-gray-600);
}

.jboms-filter-btn:hover {
  border-color: var(--color-jboms-orange-500);
  color: var(--color-jboms-orange-500);
}

.jboms-filter-btn.active {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  border-color: var(--color-jboms-orange-500);
}

/* ============================================
   BLOG POSTS GRID
   ============================================ */

.jboms-blog-grid {
  padding: 8rem 0;
  background: var(--color-jboms-gray-900);
}

.jboms-blog-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-blog-grid-header {
  margin-bottom: 4rem;
}

.jboms-blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .jboms-blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jboms-blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-blog-card {
  transition: transform 0.3s ease;
}

.jboms-blog-card:hover {
  transform: translateY(-4px);
}

.jboms-blog-card-inner {
  border: 1px solid var(--color-jboms-gray-700);
  background: rgba(31, 41, 55, 0.3);
  transition: border-color 0.3s ease;
}

.jboms-blog-card:hover .jboms-blog-card-inner {
  border-color: var(--color-jboms-orange-500);
}

.jboms-blog-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.jboms-blog-card-image a {
  display: block;
  height: 100%;
}

.jboms-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.jboms-blog-card:hover .jboms-card-img {
  transform: scale(1.05);
}

.jboms-blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.jboms-blog-card-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.jboms-blog-card-category span {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.25rem;
  display: inline-block;
}

.jboms-blog-card-content {
  padding: 1.5rem;
}

.jboms-blog-card-meta {
  margin-bottom: 1rem;
}

.jboms-blog-card-meta-date {
  display: flex;
  align-items: center;
  color: var(--color-jboms-gray-500);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.jboms-blog-card-author {
  display: flex;
  align-items: center;
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
}

.jboms-author-avatar-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.jboms-blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.jboms-blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jboms-blog-card:hover .jboms-blog-card-title a {
  color: var(--color-jboms-orange-500);
}

.jboms-blog-card-excerpt {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.jboms-blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.jboms-tag-sm {
  background: var(--color-jboms-gray-800);
  color: var(--color-jboms-gray-400);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}

.jboms-blog-read-more {
  color: var(--color-jboms-orange-500);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jboms-blog-read-more:hover {
  color: var(--color-jboms-orange-400);
}

/* ============================================
   BLOG PAGINATION - ENHANCED VERSION
   ============================================ */

.jboms-blog-pagination {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.jboms-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Pagination Buttons (Previous/Next) */
.jboms-pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--color-jboms-gray-800);
  color: var(--color-jboms-white);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid var(--color-jboms-gray-700);
  min-height: 48px;
}

.jboms-pagination-btn:hover {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  border-color: var(--color-jboms-orange-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.jboms-pagination-btn:focus-visible {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 2px;
}

.jboms-pagination-btn svg {
  transition: transform 0.3s ease;
}

.jboms-pagination-prev:hover svg {
  transform: translateX(-2px);
}

.jboms-pagination-next:hover svg {
  transform: translateX(2px);
}

/* Page Numbers Container */
.jboms-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 1rem;
}

/* Individual Page Numbers */
.jboms-pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-jboms-gray-800);
  color: var(--color-jboms-white);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid var(--color-jboms-gray-700);
}

.jboms-pagination-number:hover {
  background: var(--color-jboms-gray-700);
  border-color: var(--color-jboms-gray-600);
  transform: translateY(-1px);
}

/* Current Page */
.jboms-pagination-current {
  background: var(--color-jboms-orange-500) !important;
  color: var(--color-jboms-black) !important;
  border-color: var(--color-jboms-orange-500) !important;
  cursor: default;
  transform: none !important;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Dots for ellipsis */
.jboms-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-jboms-gray-500);
  font-weight: 600;
  pointer-events: none;
}

/* Pagination Info */
.jboms-pagination-info {
  text-align: center;
  margin-top: 1rem;
}

.jboms-pagination-info span {
  color: var(--color-jboms-gray-500);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: var(--color-jboms-gray-800);
  border-radius: 2rem;
  border: 1px solid var(--color-jboms-gray-700);
}

/* ============================================
   NO POSTS FOUND STATE
   ============================================ */

.jboms-blog-no-posts {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: var(--color-jboms-gray-800);
  border-radius: 1rem;
  border: 2px dashed var(--color-jboms-gray-600);
  margin: 2rem 0;
}

.jboms-no-posts-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 1rem;
}

.jboms-no-posts-content p {
  font-size: 1.125rem;
  color: var(--color-jboms-gray-400);
  margin-bottom: 2rem;
  max-width: 32rem;
  line-height: 1.6;
}

.jboms-btn-back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.jboms-btn-back-to-blog:hover {
  background: var(--color-jboms-orange-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

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

@media (max-width: 768px) {
  .jboms-blog-pagination {
    margin-top: 4rem;
    gap: 1.5rem;
  }
  
  .jboms-pagination-wrapper {
    gap: 0.25rem;
    padding: 0 1rem;
  }
  
  .jboms-pagination-btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    min-height: 44px;
  }
  
  .jboms-pagination-btn span {
    display: none;
  }
  
  .jboms-pagination-number {
    width: 44px;
    height: 44px;
    font-size: 0.8rem;
  }
  
  .jboms-pagination-dots {
    width: 44px;
    height: 44px;
  }
  
  .jboms-pagination-numbers {
    margin: 0 0.5rem;
  }
  
  .jboms-blog-no-posts {
    padding: 4rem 1.5rem;
    margin: 1rem 0;
  }
  
  .jboms-no-posts-content h3 {
    font-size: 1.5rem;
  }
  
  .jboms-no-posts-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .jboms-pagination-wrapper {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .jboms-pagination-btn {
    width: 100%;
    justify-content: center;
  }
  
  .jboms-pagination-btn span {
    display: inline;
  }
  
  .jboms-pagination-numbers {
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .jboms-pagination-info {
    margin-top: 0.5rem;
  }
}

/* ============================================
   BLOG POSTS GRID ADJUSTMENT
   ============================================ */

/* Update grid to better accommodate 6 posts per page */
@media (min-width: 1200px) {
  .jboms-blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1600px) {
  .jboms-blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* ============================================
   PAGINATION ACCESSIBILITY
   ============================================ */

/* Screen reader only text */
.jboms-pagination-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus indicators */
.jboms-pagination-number:focus-visible,
.jboms-btn-back-to-blog:focus-visible {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 2px;
}

/* ============================================
   LOADING STATE (Optional)
   ============================================ */

.jboms-pagination-loading {
  opacity: 0.6;
  pointer-events: none;
}

.jboms-pagination-loading .jboms-pagination-btn,
.jboms-pagination-loading .jboms-pagination-number {
  cursor: not-allowed;
}

/* ============================================
   HIGH CONTRAST MODE SUPPORT
   ============================================ */

@media (prefers-contrast: high) {
  .jboms-pagination-btn,
  .jboms-pagination-number {
    border-width: 2px;
  }
  
  .jboms-pagination-current {
    border-width: 3px !important;
  }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .jboms-pagination-btn,
  .jboms-pagination-number,
  .jboms-btn-back-to-blog {
    transition: none;
  }
  
  .jboms-pagination-btn:hover,
  .jboms-pagination-number:hover,
  .jboms-btn-back-to-blog:hover {
    transform: none;
  }
}

/* ============================================
   BLOG CATEGORIES OVERVIEW
   ============================================ */

.jboms-blog-categories {
  padding: 8rem 0;
  background: var(--color-jboms-black);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-blog-categories-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-blog-categories-header {
  text-align: center;
  margin-bottom: 6rem;
}

.jboms-blog-categories-intro {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  max-width: 48rem;
  margin: 0 auto;
}

.jboms-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jboms-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jboms-category-card {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.jboms-category-card:hover {
  transform: translateY(-4px);
}

.jboms-category-card-inner {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 2rem;
  background: rgba(31, 41, 55, 0.3);
  text-align: center;
  transition: border-color 0.3s ease;
  height: 100%;
}

.jboms-category-card:hover .jboms-category-card-inner {
  border-color: var(--color-jboms-orange-500);
}

.jboms-category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.jboms-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.jboms-category-card:hover .jboms-category-title {
  color: var(--color-jboms-orange-500);
}

.jboms-category-description {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.jboms-category-count {
  color: var(--color-jboms-orange-500);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */

.jboms-single-header {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-single-header-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-jboms-black) 0%, var(--color-jboms-gray-900) 50%, var(--color-jboms-black) 100%);
  opacity: 0.9;
  z-index: 1;
}

.jboms-single-header-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-single-header-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-single-header-inner {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.jboms-single-category {
  margin-bottom: 1.5rem;
}

.jboms-single-category span {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.25rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jboms-single-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-jboms-white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.jboms-single-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.jboms-single-meta-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jboms-single-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.jboms-single-author-name {
  color: var(--color-jboms-white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.jboms-single-meta-details {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
}

.jboms-single-share {
  display: flex;
  gap: 0.75rem;
}

.jboms-share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-jboms-white);
  transition: all 0.2s ease;
}

.jboms-share-btn:hover {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  transform: scale(1.1);
}

.jboms-share-btn svg {
  width: 18px;
  height: 18px;
}

/* Featured Image */
.jboms-single-featured-image {
  background: var(--color-jboms-gray-950);
  padding: 0 1rem;
}

.jboms-single-image-container {
  max-width: 1200px;
  margin: 0 auto;
  transform: translateY(-4rem);
}

.jboms-single-img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Content */
.jboms-single-content-wrapper {
  background: var(--color-jboms-gray-950);
  padding: 4rem 0 8rem;
}

.jboms-single-content {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
  color: var(--color-jboms-gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

.jboms-single-content h2 {
  color: var(--color-jboms-white);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.jboms-single-content h3 {
  color: var(--color-jboms-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.jboms-single-content p {
  margin-bottom: 1.5rem;
}

.jboms-single-content ul,
.jboms-single-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.jboms-single-content li {
  margin-bottom: 0.5rem;
}

.jboms-single-content a {
  color: var(--color-jboms-orange-500);
  text-decoration: underline;
}

.jboms-single-content a:hover {
  color: var(--color-jboms-orange-400);
}

.jboms-single-content blockquote {
  border-left: 4px solid var(--color-jboms-orange-500);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-jboms-gray-400);
}

.jboms-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.jboms-single-content code {
  background: var(--color-jboms-gray-800);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.9em;
}

.jboms-single-content pre {
  background: var(--color-jboms-gray-800);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.jboms-single-content pre code {
  background: none;
  padding: 0;
}

/* Tags */
.jboms-single-tags {
  max-width: 42rem;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.jboms-single-tags h4 {
  color: var(--color-jboms-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.jboms-single-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jboms-single-tag {
  background: var(--color-jboms-gray-800);
  color: var(--color-jboms-gray-300);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.jboms-single-tag:hover {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
}

/* Author Bio */
.jboms-single-author-bio {
  max-width: 42rem;
  margin: 4rem auto 0;
  padding: 2rem;
  background: var(--color-jboms-gray-900);
  border-radius: 0.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.jboms-author-bio-avatar {
  flex-shrink: 0;
}

.jboms-author-bio-avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.jboms-author-bio-name {
  color: var(--color-jboms-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.jboms-author-bio-description {
  color: var(--color-jboms-gray-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.jboms-author-bio-links {
  display: flex;
  gap: 1rem;
}

.jboms-author-bio-links a {
  color: var(--color-jboms-orange-500);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.jboms-author-bio-links a:hover {
  color: var(--color-jboms-orange-400);
}

/* Related Posts */
.jboms-single-related {
  background: var(--color-jboms-gray-900);
  padding: 8rem 0;
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-single-related-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-single-related-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.jboms-single-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-single-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-related-card {
  transition: transform 0.3s ease;
}

.jboms-related-card:hover {
  transform: translateY(-4px);
}

.jboms-related-card-link {
  display: block;
  text-decoration: none;
}

.jboms-related-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.jboms-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.jboms-related-card:hover .jboms-related-img {
  transform: scale(1.05);
}

.jboms-related-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.jboms-related-category {
  color: var(--color-jboms-orange-500);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.jboms-related-title {
  color: var(--color-jboms-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.jboms-related-card:hover .jboms-related-title {
  color: var(--color-jboms-orange-500);
}

.jboms-related-meta {
  color: var(--color-jboms-gray-500);
  font-size: 0.875rem;
}

/* Single Post CTA */
.jboms-single-cta {
  background: var(--color-jboms-black);
  padding: 8rem 0;
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-single-cta-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.jboms-single-cta-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.jboms-single-cta-text {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-500);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.jboms-single-cta-subtitle {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ============================================
   GENERIC PAGE STYLES
   ============================================ */

.jboms-page-header {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-page-header-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-jboms-black) 0%, var(--color-jboms-gray-900) 50%, var(--color-jboms-black) 100%);
  opacity: 0.9;
  z-index: 1;
}

.jboms-page-header-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-page-header-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-page-header-inner {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.jboms-page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-jboms-white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.jboms-page-subtitle {
  font-size: 1.25rem;
  color: var(--color-jboms-gray-300);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.jboms-page-meta {
  color: var(--color-jboms-gray-500);
  font-size: 0.875rem;
}

/* Page Content */
.jboms-page-content-wrapper {
  background: var(--color-jboms-gray-950);
  padding: 4rem 0 8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .jboms-page-content-wrapper {
    grid-template-columns: 1fr 300px;
  }
}

.jboms-page-content {
  color: var(--color-jboms-gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

.jboms-page-content h2 {
  color: var(--color-jboms-white);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  scroll-margin-top: 100px;
}

.jboms-page-content h3 {
  color: var(--color-jboms-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  scroll-margin-top: 100px;
}

.jboms-page-content p {
  margin-bottom: 1.5rem;
}

.jboms-page-content ul,
.jboms-page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.jboms-page-content li {
  margin-bottom: 0.75rem;
}

.jboms-page-content a {
  color: var(--color-jboms-orange-500);
  text-decoration: underline;
}

.jboms-page-content a:hover {
  color: var(--color-jboms-orange-400);
}

.jboms-page-children {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-page-children h3 {
  margin-top: 0;
}

.jboms-page-children ul {
  list-style: none;
  padding: 0;
}

.jboms-page-children li {
  margin-bottom: 1rem;
}

.jboms-page-children a {
  display: block;
  padding: 1rem;
  background: var(--color-jboms-gray-900);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.jboms-page-children a:hover {
  background: var(--color-jboms-gray-800);
  text-decoration: none;
}

/* Page Sidebar */
.jboms-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.jboms-page-toc {
  background: var(--color-jboms-gray-900);
  padding: 1.5rem;
  border-radius: 0.5rem;
  position: sticky;
  top: 100px;
}

.jboms-page-toc h4 {
  color: var(--color-jboms-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#jboms-toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#jboms-toc-list a {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.5rem;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

#jboms-toc-list a:hover,
#jboms-toc-list a.active {
  color: var(--color-jboms-orange-500);
  border-left-color: var(--color-jboms-orange-500);
  background: rgba(249, 115, 22, 0.1);
}

.jboms-page-contact-card {
  background: var(--color-jboms-gray-900);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.jboms-page-contact-card h4 {
  color: var(--color-jboms-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.jboms-page-contact-card p {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.jboms-page-contact-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  text-align: center;
  font-weight: 700;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.jboms-page-contact-btn:hover {
  background: var(--color-jboms-orange-600);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .jboms-single-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .jboms-author-bio-avatar {
    margin: 0 auto;
  }
  
  .jboms-author-bio-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .jboms-blog-hero,
  .jboms-single-header,
  .jboms-page-header {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
}




/* ============================================
   LOGO OUTLINED EFFECT - BOMS
   ============================================ */

/* Logo principal en el header */
.jboms-logo-text {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  letter-spacing: -0.025em;
}

/* Hacer la J sólida en blanco */
.jboms-logo-j {
  color: var(--color-jboms-white);
  -webkit-text-fill-color: var(--color-jboms-white);
  -webkit-text-stroke: 0;
}

/* Hacer BOMS hueco (solo borde) */
.jboms-logo-boms {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--color-jboms-gray-400);
}

/* Para navegadores que no soporten webkit */
@supports not (-webkit-text-stroke: 2px var(--color-jboms-gray-400)) {
  .jboms-logo-boms {
    color: var(--color-jboms-gray-400);
  }
}

/* Footer logo también */
.jboms-footer-logo-text {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.jboms-footer-logo-j {
  color: var(--color-jboms-white);
  -webkit-text-fill-color: var(--color-jboms-white);
  -webkit-text-stroke: 0px;
}

.jboms-footer-logo-boms {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--color-jboms-gray-400);
}

/* Responsive - hacer el stroke más delgado en mobile */
@media (max-width: 640px) {
  .jboms-logo-boms,
  .jboms-footer-logo-boms {
    -webkit-text-stroke: 1px var(--color-jboms-gray-400);
  }
}


/* ============================================
   TERMS PAGE - HERO SECTION
   ============================================ */

.jboms-terms-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-terms-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-jboms-black) 0%, var(--color-jboms-gray-900) 50%, var(--color-jboms-black) 100%);
  opacity: 0.9;
  z-index: 1;
}

.jboms-terms-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-terms-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-terms-hero-inner {
  text-align: center;
  padding-top: 8rem;
  margin-bottom: 4rem;
}

.jboms-terms-hero-title {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
}

.jboms-terms-hero-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-terms-hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-jboms-gray-300);
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   LAST UPDATED SECTION
   ============================================ */

.jboms-terms-updated {
  padding: 4rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-terms-updated-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.jboms-terms-updated-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
}

.jboms-terms-updated-badge span {
  color: var(--color-jboms-orange-500);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ============================================
   TERMS CONTENT SECTION
   ============================================ */

.jboms-terms-content {
  padding: 8rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-terms-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-terms-section {
  margin-bottom: 4rem;
}

.jboms-terms-heading {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.jboms-terms-text {
  color: var(--color-jboms-gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

.jboms-terms-text p {
  margin-bottom: 1.5rem;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.jboms-terms-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .jboms-terms-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-terms-service-box {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.jboms-terms-service-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-jboms-orange-500);
  margin-bottom: 1rem;
}

.jboms-terms-service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jboms-terms-service-box li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.jboms-terms-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.75rem;
  flex-shrink: 0;
}

.jboms-terms-bullet-sm {
  width: 6px;
  height: 6px;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 0.75rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.jboms-terms-bullet-lg {
  width: 12px;
  height: 12px;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ============================================
   CALLOUTS & INFO BOXES
   ============================================ */

.jboms-terms-callout {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.jboms-terms-callout h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-jboms-orange-500);
  margin-bottom: 0.75rem;
}

.jboms-terms-callout p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.jboms-terms-info-box {
  background: var(--color-jboms-gray-800);
  border: 1px solid var(--color-jboms-gray-700);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.jboms-terms-info-box h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
}

.jboms-terms-info-box p {
  font-size: 0.875rem;
  color: var(--color-jboms-gray-400);
  margin-bottom: 0;
}

/* ============================================
   IMPORTANT BOX (Free Service Guidelines)
   ============================================ */

.jboms-terms-important-box {
  background: var(--color-jboms-gray-800);
  border: 1px solid rgba(249, 115, 22, 0.5);
  padding: 2rem;
  border-radius: 0.5rem;
}

.jboms-terms-important-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jboms-orange-500);
  margin-bottom: 1.5rem;
}

.jboms-terms-guidelines {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jboms-terms-guideline h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
}

.jboms-terms-guideline p {
  margin-bottom: 0;
}

.jboms-terms-detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.jboms-terms-detail-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.jboms-terms-detail-list strong {
  color: var(--color-jboms-white);
}

/* ============================================
   SUBSECTIONS
   ============================================ */

.jboms-terms-subsection {
  margin-bottom: 2rem;
}

.jboms-terms-subsection h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jboms-orange-500);
  margin-bottom: 1rem;
}

/* ============================================
   RESPONSIBILITIES GRID
   ============================================ */

.jboms-terms-responsibilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .jboms-terms-responsibilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-terms-responsibility h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-jboms-orange-500);
  margin-bottom: 1rem;
}

.jboms-terms-responsibility ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jboms-terms-responsibility li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* ============================================
   TERMINATION GRID
   ============================================ */

.jboms-terms-termination-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .jboms-terms-termination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-terms-termination-box {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.jboms-terms-termination-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-jboms-orange-500);
  margin-bottom: 1rem;
}

.jboms-terms-termination-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jboms-terms-termination-box li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.jboms-terms-process {
  margin-top: 1.5rem;
}

.jboms-terms-process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.jboms-terms-step-number {
  width: 32px;
  height: 32px;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.jboms-terms-step-content h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.5rem;
}

.jboms-terms-step-content p {
  margin-bottom: 0;
}

/* ============================================
   CONTACT BOX
   ============================================ */

.jboms-terms-contact-box {
  background: var(--color-jboms-gray-800);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 2rem;
  border-radius: 0.5rem;
}

.jboms-terms-contact-box > p {
  color: var(--color-jboms-gray-300);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.jboms-terms-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.jboms-terms-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.jboms-terms-contact-label {
  color: var(--color-jboms-orange-500);
  font-weight: 600;
  min-width: 6rem;
  margin-top: 0.25rem;
}

.jboms-terms-contact-item a {
  color: var(--color-jboms-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.jboms-terms-contact-item a:hover {
  color: var(--color-jboms-orange-500);
}

.jboms-terms-contact-item div {
  color: var(--color-jboms-white);
  line-height: 1.6;
}

.jboms-terms-contact-cta {
  background: rgba(249, 115, 22, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
}

.jboms-terms-contact-cta p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-jboms-orange-500);
  margin-bottom: 0;
}

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

@media (max-width: 640px) {
  .jboms-terms-hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .jboms-terms-hero-inner {
    padding-top: 6rem;
  }
  
  .jboms-terms-content {
    padding: 4rem 0;
  }
  
  .jboms-terms-heading {
    font-size: 1.875rem;
  }
  
  .jboms-terms-process-step {
    gap: 1rem;
  }
  
  .jboms-terms-contact-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .jboms-terms-contact-label {
    min-width: auto;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .jboms-terms-hero-gradient,
  .jboms-terms-hero-grid {
    display: none !important;
  }
  
  .jboms-terms-hero,
  .jboms-terms-updated,
  .jboms-terms-content {
    background: white !important;
    padding: 2rem 0 !important;
  }
  
  .jboms-terms-hero-title,
  .jboms-terms-heading,
  .jboms-terms-subsection h3 {
    color: black !important;
  }
  
  .jboms-terms-text,
  .jboms-terms-text p {
    color: black !important;
  }
  
  .jboms-terms-section {
    page-break-inside: avoid;
  }
}



/* ============================================
   PRIVACY PAGE - HERO SECTION
   ============================================ */

.jboms-privacy-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-jboms-black);
  overflow: hidden;
}

.jboms-privacy-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-jboms-black) 0%, var(--color-jboms-gray-900) 50%, var(--color-jboms-black) 100%);
  opacity: 0.9;
  z-index: 1;
}

.jboms-privacy-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 2;
}

.jboms-privacy-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-privacy-hero-inner {
  text-align: center;
  padding-top: 8rem;
  margin-bottom: 4rem;
}

.jboms-privacy-hero-title {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
}

.jboms-privacy-hero-title .text-gray {
  color: var(--color-jboms-gray-300);
}

.jboms-privacy-hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-jboms-gray-300);
  font-weight: 300;
  letter-spacing: 0.025em;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   PRIVACY PAGE - LAST UPDATED BADGE
   ============================================ */

.jboms-privacy-updated {
  padding: 4rem 0;
  background: var(--color-jboms-gray-950);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-privacy-updated-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.jboms-privacy-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
}

.jboms-privacy-badge span {
  color: var(--color-jboms-orange-500);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   PRIVACY PAGE - CONTENT SECTIONS
   ============================================ */

.jboms-privacy-content-section {
  padding: 8rem 0;
  background: var(--color-jboms-gray-900);
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-privacy-content-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.jboms-privacy-section {
  margin-bottom: 4rem;
}

.jboms-privacy-section:last-child {
  margin-bottom: 0;
}

.jboms-privacy-section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-jboms-white);
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.jboms-privacy-text {
  color: var(--color-jboms-gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

.jboms-privacy-text p {
  margin-bottom: 1.5rem;
}

.jboms-privacy-text p:last-child {
  margin-bottom: 0;
}

/* Subsections */
.jboms-privacy-subsections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.jboms-privacy-subsection {
  padding-top: 2rem;
}

.jboms-privacy-subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-jboms-orange-500);
  margin-bottom: 1rem;
}

/* Lists */
.jboms-privacy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.jboms-privacy-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--color-jboms-gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

.jboms-privacy-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.75rem;
  flex-shrink: 0;
}

.jboms-privacy-list-sm {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.jboms-privacy-list-sm li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  line-height: 1.6;
}

.jboms-privacy-list-sm li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: var(--color-jboms-orange-500);
  border-radius: 50%;
  margin-right: 0.75rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Grid Layout */
.jboms-privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .jboms-privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jboms-privacy-grid-item {
  padding: 0;
}

.jboms-privacy-grid-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  margin-bottom: 0.75rem;
}

/* Cards */
.jboms-privacy-card {
  border: 1px solid var(--color-jboms-gray-700);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.jboms-privacy-card:last-child {
  margin-bottom: 0;
}

.jboms-privacy-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-jboms-orange-500);
  margin-bottom: 0.75rem;
}

/* Callout Boxes */
.jboms-privacy-note {
  background: var(--color-jboms-gray-800);
  border: 1px solid var(--color-jboms-gray-700);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.jboms-privacy-note p {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  margin: 0;
}

.jboms-privacy-warning {
  background: var(--color-jboms-gray-800);
  border: 1px solid var(--color-jboms-gray-700);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.jboms-privacy-warning p {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  margin: 0;
}

.jboms-privacy-highlight {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.jboms-privacy-highlight h4 {
  color: var(--color-jboms-orange-500);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.jboms-privacy-highlight p {
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  margin: 0;
}

.jboms-privacy-highlight a {
  color: var(--color-jboms-orange-500);
  font-weight: 600;
  text-decoration: none;
}

.jboms-privacy-highlight a:hover {
  color: var(--color-jboms-orange-400);
  text-decoration: underline;
}

/* Rights List */
.jboms-privacy-rights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.jboms-privacy-right-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.jboms-privacy-right-number {
  width: 2rem;
  height: 2rem;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.jboms-privacy-right-content h4 {
  color: var(--color-jboms-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.jboms-privacy-right-content p {
  color: var(--color-jboms-gray-300);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact Card */
.jboms-privacy-contact-card {
  background: var(--color-jboms-gray-800);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 2rem;
  border-radius: 0.5rem;
}

.jboms-privacy-contact-card > p {
  color: var(--color-jboms-gray-300);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.jboms-privacy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jboms-privacy-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.jboms-privacy-contact-label {
  color: var(--color-jboms-orange-500);
  font-weight: 600;
  font-size: 1rem;
  min-width: 6rem;
  flex-shrink: 0;
}

.jboms-privacy-contact-item a {
  color: var(--color-jboms-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.jboms-privacy-contact-item a:hover {
  color: var(--color-jboms-orange-500);
}

.jboms-privacy-contact-item div {
  color: var(--color-jboms-white);
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .jboms-privacy-hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .jboms-privacy-hero-inner {
    padding-top: 6rem;
  }
  
  .jboms-privacy-content-section {
    padding: 4rem 0;
  }
  
  .jboms-privacy-section {
    margin-bottom: 3rem;
  }
  
  .jboms-privacy-section-title {
    font-size: 1.875rem;
  }
  
  .jboms-privacy-right-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .jboms-privacy-contact-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .jboms-privacy-contact-label {
    min-width: auto;
  }
}

@media (max-width: 640px) {
  .jboms-privacy-hero-title {
    font-size: clamp(2rem, 12vw, 4rem);
  }
  
  .jboms-privacy-text {
    font-size: 1rem;
  }
  
  .jboms-privacy-list li {
    font-size: 1rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .jboms-privacy-hero-gradient,
  .jboms-privacy-hero-grid,
  .jboms-scroll-top {
    display: none !important;
  }
  
  .jboms-privacy-hero,
  .jboms-privacy-updated,
  .jboms-privacy-content-section {
    background: white !important;
    padding: 1rem 0 !important;
  }
  
  .jboms-privacy-hero-title,
  .jboms-privacy-section-title,
  .jboms-privacy-subsection-title,
  .jboms-privacy-grid-title,
  .jboms-privacy-right-content h4 {
    color: black !important;
  }
  
  .jboms-privacy-section {
    page-break-inside: avoid;
  }
}


/**
 * TOUCHSUITE CASE STUDY SECTION
 * Compatible with existing JBOMS styles
 * Add this to the END of wp-content/themes/blocksy-child/assets/css/jboms-custom.css
 */

/* ============================================
   TOUCHSUITE CASE STUDY - MAIN SECTION
   ============================================ */

.jboms-touchsuite-case-study {
  padding: 8rem 0;
  background: var(--color-jboms-black);
  border-top: 1px solid var(--color-jboms-gray-800);
  position: relative;
  overflow: hidden;
}

.jboms-touchsuite-case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.jboms-touchsuite-case-study-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

/* ============================================
   TOUCHSUITE HEADER
   ============================================ */

.jboms-touchsuite-header {
  text-align: center;
  margin-bottom: 6rem;
}

.jboms-touchsuite-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.jboms-touchsuite-badge span {
  color: var(--color-jboms-orange-500);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jboms-touchsuite-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--color-jboms-white);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
}

.jboms-touchsuite-title .text-gray {
  color: var(--color-jboms-gray-400);
}

.jboms-touchsuite-client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.jboms-touchsuite-logo {
  max-width: 200px;
  height: auto;
  filter: brightness(1.1);
}

.jboms-touchsuite-client-details h3 {
  color: var(--color-jboms-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.jboms-touchsuite-client-details p {
  color: var(--color-jboms-gray-400);
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   TOUCHSUITE RESULTS METRICS
   ============================================ */

.jboms-touchsuite-results {
  margin-bottom: 6rem;
}

.jboms-touchsuite-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .jboms-touchsuite-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jboms-touchsuite-results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jboms-touchsuite-metric {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(31, 41, 55, 0.8) 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.jboms-touchsuite-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(249, 115, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jboms-touchsuite-metric:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.jboms-touchsuite-metric:hover::before {
  opacity: 1;
}

.jboms-touchsuite-metric-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-jboms-orange-500);
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}

.jboms-touchsuite-metric-label {
  color: var(--color-jboms-white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.jboms-touchsuite-metric-description {
  color: var(--color-jboms-gray-400);
  font-size: 0.875rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ============================================
   TOUCHSUITE SERVICES
   ============================================ */

.jboms-touchsuite-services {
  margin-bottom: 6rem;
}

.jboms-touchsuite-services-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
}

.jboms-touchsuite-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-touchsuite-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jboms-touchsuite-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-touchsuite-service-item {
  padding: 2rem;
  background: var(--color-jboms-gray-900);
  border: 1px solid var(--color-jboms-gray-700);
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.jboms-touchsuite-service-item:hover {
  border-color: var(--color-jboms-orange-500);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.jboms-touchsuite-service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.jboms-touchsuite-service-item h4 {
  color: var(--color-jboms-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.jboms-touchsuite-service-item p {
  color: var(--color-jboms-gray-400);
  line-height: 1.6;
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   TOUCHSUITE GALLERY
   ============================================ */

.jboms-touchsuite-gallery {
  margin-bottom: 6rem;
}

.jboms-touchsuite-gallery-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-jboms-white);
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.025em;
}

.jboms-touchsuite-gallery h4 {
  color: var(--color-jboms-orange-500);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.jboms-touchsuite-gallery h5 {
  color: var(--color-jboms-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.jboms-touchsuite-gallery h6 {
  color: var(--color-jboms-gray-300);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

/* ============================================
   TOUCHSUITE VIDEOS
   ============================================ */

.jboms-touchsuite-videos {
  margin-bottom: 4rem;
}

.jboms-touchsuite-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-touchsuite-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jboms-touchsuite-videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-touchsuite-video-item {
  background: var(--color-jboms-gray-900);
  border: 1px solid var(--color-jboms-gray-700);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.jboms-touchsuite-video-item:hover {
  border-color: var(--color-jboms-orange-500);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.jboms-touchsuite-video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.jboms-touchsuite-video-thumbnail iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.jboms-touchsuite-video-stats {
  padding: 1.5rem;
  text-align: center;
}

.jboms-touchsuite-video-views {
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.jboms-touchsuite-video-stats p {
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   TOUCHSUITE COLLATERALS
   ============================================ */

.jboms-touchsuite-collaterals {
  margin-bottom: 4rem;
  padding-bottom: 25px;
}

.jboms-touchsuite-collaterals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .jboms-touchsuite-collaterals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-touchsuite-collateral-item {
  text-align: center;
  background: var(--color-jboms-gray-900);
  border: 1px solid var(--color-jboms-gray-700);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.jboms-touchsuite-collateral-item:hover {
  border-color: var(--color-jboms-orange-500);
  transform: translateY(-4px);
}

.jboms-touchsuite-collateral-item img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  max-height: 200px;
  object-fit: cover;
}

.jboms-touchsuite-collateral-item p {
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

/* ============================================
   TOUCHSUITE DIGITAL CAMPAIGNS
   ============================================ */

.jboms-touchsuite-digital {
  margin-bottom: 4rem;
  padding-bottom: 25px;
}

.jboms-touchsuite-ads-section {
  margin-bottom: 3rem;
  padding-bottom: 25px;
}

.jboms-touchsuite-ads-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .jboms-touchsuite-ads-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jboms-touchsuite-ads-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  border: 1px solid var(--color-jboms-gray-700);
}

.jboms-touchsuite-ads-grid img:hover {
  transform: scale(1.05);
  border-color: var(--color-jboms-orange-500);
}

/* ============================================
   TOUCHSUITE BANNER SECTION
   ============================================ */

.jboms-touchsuite-banner-section {
  margin-bottom: 3rem;
  padding-bottom: 25px;
}

.jboms-touchsuite-banner-item {
  text-align: center;
  background: var(--color-jboms-gray-900);
  border: 1px solid var(--color-jboms-gray-700);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.jboms-touchsuite-banner-item:hover {
  border-color: var(--color-jboms-orange-500);
}

.jboms-touchsuite-banner-item img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.jboms-touchsuite-banner-item p {
  color: var(--color-jboms-gray-300);
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   TOUCHSUITE CAROUSEL
   ============================================ */

.jboms-touchsuite-carousel-section {
  margin-bottom: 3rem;
  padding-bottom: 25px;
}

.jboms-touchsuite-carousel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .jboms-touchsuite-carousel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jboms-touchsuite-carousel-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.jboms-touchsuite-carousel-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  border: 1px solid var(--color-jboms-gray-700);
}

.jboms-touchsuite-carousel-grid img:hover {
  transform: scale(1.05);
  border-color: var(--color-jboms-orange-500);
}

/* ============================================
   TOUCHSUITE CTA SECTIONS
   ============================================ */

.jboms-touchsuite-cta {
  margin-bottom: 4rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(31, 41, 55, 0.8) 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 2rem;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.jboms-touchsuite-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  animation: touchsuite-pulse 4s ease-in-out infinite;
}

.jboms-touchsuite-cta-content {
  position: relative;
  z-index: 1;
}

.jboms-touchsuite-cta h3 {
  color: var(--color-jboms-white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.jboms-touchsuite-cta p {
  color: var(--color-jboms-gray-300);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TOUCHSUITE PORTFOLIO CTA
   ============================================ */

.jboms-touchsuite-portfolio-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-jboms-gray-800);
}

.jboms-portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--color-jboms-white);
  border: 2px solid var(--color-jboms-gray-600);
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.jboms-portfolio-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-jboms-orange-500) 0%, var(--color-jboms-orange-600) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jboms-portfolio-btn span,
.jboms-portfolio-btn svg {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.jboms-portfolio-btn:hover {
  border-color: var(--color-jboms-orange-500);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.jboms-portfolio-btn:hover::before {
  opacity: 1;
}

.jboms-portfolio-btn:hover span,
.jboms-portfolio-btn:hover svg {
  color: var(--color-jboms-black);
}

.jboms-portfolio-btn:hover svg {
  transform: translateX(4px);
}

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

@keyframes touchsuite-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

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

@media (max-width: 768px) {
  .jboms-touchsuite-case-study {
    padding: 4rem 0;
  }
  
  .jboms-touchsuite-header {
    margin-bottom: 4rem;
  }
  
  .jboms-touchsuite-results,
  .jboms-touchsuite-services,
  .jboms-touchsuite-gallery {
    margin-bottom: 4rem;
  }
  
  .jboms-touchsuite-client-info {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .jboms-touchsuite-client-details {
    text-align: center;
  }
  
  .jboms-touchsuite-metric {
    padding: 1.5rem 1rem;
  }
  
  .jboms-touchsuite-service-item {
    padding: 1.5rem;
  }
  
  .jboms-touchsuite-cta {
    padding: 3rem 1.5rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .jboms-touchsuite-videos-grid,
  .jboms-touchsuite-collaterals-grid,
  .jboms-touchsuite-ads-grid {
    grid-template-columns: 1fr;
  }
  
  .jboms-touchsuite-carousel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jboms-touchsuite-service-icon {
    font-size: 2.5rem;
  }
}

/* ============================================
   TOUCHSUITE ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .jboms-touchsuite-metric,
  .jboms-touchsuite-service-item,
  .jboms-touchsuite-video-item,
  .jboms-touchsuite-collateral-item,
  .jboms-portfolio-btn {
    transition: none !important;
  }
  
  .jboms-touchsuite-metric:hover,
  .jboms-touchsuite-service-item:hover,
  .jboms-touchsuite-video-item:hover,
  .jboms-touchsuite-collateral-item:hover,
  .jboms-portfolio-btn:hover {
    transform: none !important;
  }
  
  .jboms-touchsuite-cta::before {
    animation: none !important;
  }
}

@media (prefers-contrast: high) {
  .jboms-touchsuite-metric,
  .jboms-touchsuite-service-item,
  .jboms-touchsuite-video-item,
  .jboms-touchsuite-collateral-item,
  .jboms-touchsuite-banner-item {
    border-width: 2px;
  }
  
  .jboms-touchsuite-cta {
    border-width: 2px;
  }
  
  .jboms-portfolio-btn {
    border-width: 3px;
  }
}


/* ============================================
   LEARNING WITH KEN - SHORTS FULL WIDTH LAYOUT
   ============================================ */

/* Contenedor principal que usa todo el ancho */
.jboms-learning-shorts-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Grid para 4 shorts en una fila */
.jboms-learning-shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  justify-items: center;
  align-items: start;
}

@media (max-width: 1024px) {
  .jboms-learning-shorts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .jboms-learning-shorts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .jboms-learning-shorts-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .jboms-learning-shorts-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Video item optimizado para el nuevo layout */
.jboms-learning-short-item {
  background: var(--color-jboms-gray-900);
  border: 1px solid var(--color-jboms-gray-700);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  position: relative;
}

.jboms-learning-short-item:hover {
  border-color: var(--color-jboms-orange-500);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Contenedor del video vertical */
.jboms-learning-short-video {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--color-jboms-black);
  width: 100%;
}

.jboms-learning-short-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay con información del video */
.jboms-learning-short-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  padding: 1.5rem 1rem 1rem;
  color: white;
}

/* Badge de views */
.jboms-learning-short-views {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

/* Título del short */
.jboms-learning-short-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--color-jboms-white);
}

/* Descripción del short */
.jboms-learning-short-description {
  font-size: 0.75rem;
  color: var(--color-jboms-gray-300);
  line-height: 1.4;
  margin: 0;
}

/* Icono de play centrado */
.jboms-learning-short-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.3s ease;
  pointer-events: none;
}

.jboms-learning-short-item:hover .jboms-learning-short-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.jboms-learning-short-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--color-jboms-black);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Tipo de contenido badge */
.jboms-learning-content-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-jboms-white);
  padding: 0.3rem 0.7rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 10;
}

/* Badge especial para Excel (verde) */
.jboms-learning-content-type.excel {
  background: rgba(34, 197, 94, 0.9);
  color: var(--color-jboms-white);
}

/* Badge especial para PowerPoint (azul) */
.jboms-learning-content-type.powerpoint {
  background: rgba(59, 130, 246, 0.9);
  color: var(--color-jboms-white);
}

/* Indicador de duración */
.jboms-learning-short-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-jboms-white);
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  z-index: 10;
}

/* Título de sección centrado */
.jboms-learning-section-title {
  color: var(--color-jboms-white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.jboms-learning-section-subtitle {
  color: var(--color-jboms-gray-400);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.6;
}

/* Estados de hover mejorados */
.jboms-learning-short-item:hover .jboms-learning-short-overlay {
  background: linear-gradient(to top, rgba(249, 115, 22, 0.9) 0%, rgba(249, 115, 22, 0.6) 50%, transparent 100%);
}

.jboms-learning-short-item:hover .jboms-learning-short-title {
  color: var(--color-jboms-black);
}

.jboms-learning-short-item:hover .jboms-learning-short-description {
  color: rgba(0, 0, 0, 0.8);
}

/* Animación de aparición */
.jboms-learning-short-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpShort 0.6s ease-out forwards;
}

.jboms-learning-short-item:nth-child(1) { animation-delay: 0.1s; }
.jboms-learning-short-item:nth-child(2) { animation-delay: 0.2s; }
.jboms-learning-short-item:nth-child(3) { animation-delay: 0.3s; }
.jboms-learning-short-item:nth-child(4) { animation-delay: 0.4s; }

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

/* Responsive para tablet */
@media (max-width: 1024px) {
  .jboms-learning-short-item {
    max-width: none;
  }
  
  .jboms-learning-section-title {
    font-size: 1.75rem;
  }
  
  .jboms-learning-section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

/* Responsive para mobile */
@media (max-width: 640px) {
  .jboms-learning-short-views {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
  
  .jboms-learning-short-title {
    font-size: 0.8rem;
  }
  
  .jboms-learning-short-description {
    font-size: 0.7rem;
  }
  
  .jboms-learning-section-title {
    font-size: 1.5rem;
  }
  
  .jboms-learning-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Galería responsiva */
.jboms-learning-gallery {
  margin-bottom: 6rem;
  width: 100%;
}

.jboms-learning-gallery .jboms-touchsuite-gallery-title {
  margin-bottom: 4rem;
}

.jboms-learning-videos {
  margin-bottom: 4rem;
}

.jboms-learning-videos:last-child {
  margin-bottom: 0;
}



/* ============================================
   SOFTWARE DEMOS - INDIVIDUAL SECTIONS
   ============================================ */

/* Contenedor de video demo individual */
.jboms-software-video-demo {
  margin: 4rem 0 6rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.jboms-software-demo-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-jboms-white);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

/* Contenedor principal del video */
.jboms-software-video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-jboms-gray-900);
  border: 1px solid var(--color-jboms-gray-700);
  transition: all 0.3s ease;
}

.jboms-software-video-container:hover {
  border-color: var(--color-jboms-orange-500);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* Video responsivo */
.jboms-software-video-container video {
  width: 100%;
  height: auto;
  display: block;
  min-height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .jboms-software-video-container video {
    min-height: 500px;
  }
}

@media (min-width: 1024px) {
  .jboms-software-video-container video {
    min-height: 600px;
  }
}

/* Descripción del demo */
.jboms-software-demo-description {
  color: var(--color-jboms-gray-400);
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Overlay para estado de carga */
.jboms-software-video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 25%, 
    rgba(249, 115, 22, 0.1) 25%, 
    rgba(249, 115, 22, 0.1) 50%, 
    transparent 50%, 
    transparent 75%, 
    rgba(249, 115, 22, 0.1) 75%);
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.jboms-software-video-container:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -20px 0;
  }
  100% {
    background-position: 20px 0;
  }
}

/* Badge de estado en el video */
.jboms-software-video-container::after {
  content: 'LIVE DEMO';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-jboms-orange-500);
  color: var(--color-jboms-black);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  animation: pulse-demo 2s ease-in-out infinite;
}

@keyframes pulse-demo {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }
}

/* Controles de video personalizados */
.jboms-software-video-container video::-webkit-media-controls {
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.jboms-software-video-container video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0;
}

.jboms-software-video-container video::-webkit-media-controls-play-button {
  background-color: var(--color-jboms-orange-500);
  border-radius: 50%;
}

/* Mejoras para el section completo */
.jboms-touchsuite-case-study {
  border-bottom: 1px solid var(--color-jboms-gray-800);
}

.jboms-touchsuite-case-study:last-of-type {
  border-bottom: none;
}

/* Estilos específicos para badges de categoria */
.jboms-touchsuite-badge span {
  position: relative;
}

/* Badge colors por tipo de software */
.jboms-touchsuite-case-study:nth-of-type(1) .jboms-touchsuite-badge {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.jboms-touchsuite-case-study:nth-of-type(1) .jboms-touchsuite-badge span {
  color: rgb(59, 130, 246);
}

.jboms-touchsuite-case-study:nth-of-type(2) .jboms-touchsuite-badge {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.jboms-touchsuite-case-study:nth-of-type(2) .jboms-touchsuite-badge span {
  color: rgb(34, 197, 94);
}

.jboms-touchsuite-case-study:nth-of-type(3) .jboms-touchsuite-badge {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

.jboms-touchsuite-case-study:nth-of-type(3) .jboms-touchsuite-badge span {
  color: rgb(168, 85, 247);
}

.jboms-touchsuite-case-study:nth-of-type(4) .jboms-touchsuite-badge {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.jboms-touchsuite-case-study:nth-of-type(4) .jboms-touchsuite-badge span {
  color: rgb(245, 158, 11);
}

/* Responsive para mobile */
@media (max-width: 768px) {
  .jboms-software-video-demo {
    margin: 3rem 0 4rem;
    padding: 0 0.5rem;
  }
  
  .jboms-software-demo-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .jboms-software-video-container {
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
  }
  
  .jboms-software-video-container video {
    min-height: 300px;
  }
  
  .jboms-software-demo-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .jboms-software-video-container::after {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.7rem;
  }
}

/* Estados de carga y error */
.jboms-software-video-container video[poster] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.jboms-software-video-container video:not([poster]) {
  background: linear-gradient(45deg, 
    var(--color-jboms-gray-800) 25%, 
    transparent 25%), 
    linear-gradient(-45deg, 
    var(--color-jboms-gray-800) 25%, 
    transparent 25%), 
    linear-gradient(45deg, 
    transparent 75%, 
    var(--color-jboms-gray-800) 75%), 
    linear-gradient(-45deg, 
    transparent 75%, 
    var(--color-jboms-gray-800) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  animation: loading-bg 2s linear infinite;
}

@keyframes loading-bg {
  0% {
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  }
  100% {
    background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px;
  }
}

/* Efectos de focus para accesibilidad */
.jboms-software-video-container:focus-within {
  outline: 2px solid var(--color-jboms-orange-500);
  outline-offset: 4px;
}

/* Alto contraste */
@media (prefers-contrast: high) {
  .jboms-software-video-container {
    border-width: 2px;
  }
  
  .jboms-software-video-container::after {
    border: 2px solid var(--color-jboms-black);
  }
}

/* Movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .jboms-software-video-container,
  .jboms-software-video-container::before,
  .jboms-software-video-container::after {
    animation: none !important;
    transition: none !important;
  }
  
  .jboms-software-video-container:hover {
    transform: none !important;
  }
}

/* Optimización para pantallas grandes */
@media (min-width: 1400px) {
  .jboms-software-video-demo {
    max-width: 1400px;
  }
  
  .jboms-software-video-container {
    max-width: 1200px;
  }
  
  .jboms-software-video-container video {
    min-height: 700px;
  }
}

/* Mejoras tipográficas */
.jboms-software-demo-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jboms-software-demo-description {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Espaciado entre secciones */
.jboms-touchsuite-case-study + .jboms-touchsuite-case-study {
  margin-top: 0;
}

/* Mejora del badge tecnológico */
.jboms-software-video-container::after {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Hover específico para cada video */
.jboms-software-video-container:hover {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--color-jboms-orange-500);
}

/* Loading state mejorado */
.jboms-software-video-container video[preload="metadata"] {
  background: var(--color-jboms-gray-800);
}

.jboms-software-video-container video[preload="metadata"]::before {
  content: 'Loading...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-jboms-gray-400);
  font-size: 1.125rem;
  font-weight: 600;
}