/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif; /* Using Raleway */
  --nav-font: "Inter", sans-serif; /* Using Inter */
  --color-accent-yellow-rgb;

  /* Added transition variable */
  --transition-speed-fast: 0.2s;
  --transition-speed-medium: 0.3s;
  --transition-speed-slow: 0.5s;
  --easing-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother easing */
}

/* BLISS Elegant B&W Color Scheme */
:root {
  --color-black: #111111;
  --color-white: #FFFFFF;
  --color-light-gray: #F4F4F4;
  --color-medium-gray: #CCCCCC;
  --color-dark-gray: #333333;
  --color-accent-yellow: #FACC15;
  --color-accent-yellow-darker: #EAB308;
  --color-accent-yellow-glow: rgba(250, 204, 21, 0.5);

  /* Semantic Colors */
  --background-color: var(--color-white);
  --default-color: var(--color-dark-gray);
  --heading-color: var(--color-black);
  --accent-color: var(--color-accent-yellow);
  --surface-color: var(--color-white);
  --contrast-color: var(--color-black);
  --contrast-color-dark: var(--color-white);
  --border-color-light: rgba(0, 0, 0, 0.1);
  --border-color-dark: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Nav Menu Colors (Refined) */
:root {
  --nav-color: var(--color-medium-gray);
  --nav-hover-color: var(--color-white);
  --nav-active-color: var(--color-accent-yellow);
  --nav-mobile-background-color: var(--color-black);
  --nav-dropdown-background-color: var(--color-black);
  --nav-dropdown-color: var(--color-medium-gray);
  --nav-dropdown-hover-color: var(--color-white);
}

/* Color Presets */
.light-background {
  --background-color: var(--color-light-gray);
  --surface-color: var(--color-white);
  --default-color: var(--color-dark-gray);
  --heading-color: var(--color-black);
  --border-color: var(--border-color-light);
}

.dark-background {
  --background-color: var(--color-black);
  --default-color: var(--color-light-gray);
  --heading-color: var(--color-white);
  --surface-color: var(--color-dark-gray);
  --contrast-color: var(--color-white);
  --border-color: var(--border-color-dark);
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-speed-medium) var(--easing-smooth);
}

a:hover {
  color: var(--color-accent-yellow-darker);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

strong, b {
   font-weight: 700; /* Ensure bold is sufficiently weighted */
}


.highlight {
  color: var(--accent-color);
}
.highlight-dark {
   color: var(--color-black);
   font-weight: 900;
}


/*--------------------------------------------------------------
# Animations & Interactive Elements
--------------------------------------------------------------*/

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-onload-fadein {
  animation: fadeIn 0.8s var(--easing-smooth) both;
}
.animate-onload-fadein-delay1 {
  animation: fadeIn 1s var(--easing-smooth) 0.3s both;
}
.animate-onload-fadein-delay2 {
  animation: fadeIn 1s var(--easing-smooth) 0.6s both;
}

/* Icon Fade-in */
@keyframes fadeScaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.fade-in-icon {
    opacity: 0;
    transform: scale(0.8);
    animation: fadeScaleIn 0.6s var(--easing-smooth) 0.2s forwards;
}

/* Subtitle Fade */
.subtitle-fade {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.8s var(--easing-smooth) 0.4s forwards;
}


/* Interactive Title Shine Effect */
.interactive-title {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.interactive-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left var(--transition-speed-slow) var(--easing-smooth);
  transform: skewX(-25deg);
  pointer-events: none;
}
/* Trigger on hover of the title itself or its parent container (like a card) */
.interactive-title:hover::after,
.interactive-card:hover .interactive-title-card::after, /* Aplicado a service-item */
.prompt-card:hover .interactive-title-card::after, /* Aplicado a prompt-card */
.interactive-feature-item:hover .interactive-title::after,
.service-block:hover .interactive-title::after {
  left: 150%;
}
/* Dark background */
.dark-background .interactive-title::after {
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}


/* Interactive Image Hover */
.interactive-image {
  transition: transform var(--transition-speed-medium) var(--easing-smooth),
              box-shadow var(--transition-speed-medium) var(--easing-smooth);
  border-radius: 1rem;
}
.interactive-image:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

/* Interactive List Items */
.interactive-list li {
  transition: transform var(--transition-speed-fast) var(--easing-smooth),
              color var(--transition-speed-fast) var(--easing-smooth);
  cursor: default;
}
.interactive-list li:hover {
  transform: translateX(5px);
  color: var(--accent-color);
}
.interactive-list li i {
   transition: transform var(--transition-speed-fast) var(--easing-smooth);
}
.interactive-list li:hover i {
  transform: scale(1.1);
}


/* Detail Lists (Usado en varias secciones) */
.detail-list li, .detail-list-ordered li, .detail-list-negative li, .check-list li {
    padding-left: 30px; /* Consistent padding */
    margin-bottom: 0.75rem;
    transition: transform var(--transition-speed-fast) ease-out;
    position: relative;
    line-height: 1.6;
}
.detail-list li:hover, .detail-list-ordered li:hover, .detail-list-negative li:hover, .check-list li:hover {
    transform: translateX(3px);
}
.detail-list i.bi, /* Para iconos genéricos bi-* en .detail-list */
.detail-list-negative i.bi-x,
.check-list i.bi { /* Para iconos genéricos bi-* en .check-list */
    position: absolute;
    left: 0; /* Align icon to the very left */
    top: 5px; /* Adjust vertical alignment */
    font-size: 1.1rem; /* Consistent icon size */
    color: var(--accent-color); /* Default yellow */
    transition: transform 0.2s ease;
    width: 20px; /* Ensure width for alignment */
    text-align: center;
}
.detail-list-negative i.bi-x {
    color: var(--color-medium-gray);
}
.check-list i.bi { /* Bootstrap icons like bi-check-lg */
    color: var(--bs-success);
    font-weight: bold;
}
.detail-list li:hover i.bi,
.detail-list-negative li:hover i.bi-x,
.check-list li:hover i.bi {
    transform: scale(1.2); /* Slightly larger scale */
}

.detail-list-ordered {
    list-style: none;
    counter-reset: detail-counter;
    padding-left: 30px; /* Match other lists */
}
.detail-list-ordered li::before {
    content: counter(detail-counter);
    counter-increment: detail-counter;
    position: absolute;
    left: 0px; /* Alineado con el icono */
    top: 0;
    font-weight: 700;
    color: var(--accent-color);
    background-color: rgba(250, 204, 21, 0.1);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.detail-list-ordered li:hover::before {
    transform: scale(1.1);
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

/* Interactive Quote Box */
.interactive-quote-box {
    transition: transform 0.3s var(--easing-smooth), box-shadow 0.3s var(--easing-smooth);
    border-left: 5px solid var(--accent-color);
}
.interactive-quote-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
}
.interactive-quote-box .bi-quote {
    transition: transform 0.3s var(--easing-smooth);
}
.interactive-quote-box:hover .bi-quote {
    transform: scale(1.1) rotate(-5deg);
}


/*--------------------------------------------------------------
# Header & Navigation Enhancements
--------------------------------------------------------------*/
.header {
  background-color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 15px 0;
  transition: background-color var(--transition-speed-medium) var(--easing-smooth),
              padding var(--transition-speed-medium) var(--easing-smooth),
              box-shadow var(--transition-speed-medium) var(--easing-smooth);
  z-index: 997;
}

.header .container-fluid {
    display: flex;
    align-items: center;
    position: relative;
}

.header .logo {
  line-height: 1;
  margin-right: auto;
}
.header .logo img {
  max-height: 50px;
  transition: transform var(--transition-speed-medium) var(--easing-smooth);
}
.header .logo:hover img {
    transform: scale(1.05);
}

/* Global Header on Scroll */
.scrolled .header {
  background-color: rgba(17, 17, 17, 0.95);
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* --- DESKTOP NAVIGATION FIXES --- */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin: 0;
    margin-left: 20px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex !important;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    display: block;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 24px;
  }
   .navmenu>ul>li:first-child {
        padding-left: 0;
    }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 5px 3px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color var(--transition-speed-fast) ease-out;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: transparent !important;
  }

   .navmenu a i,
   .navmenu a:focus i {
      display: none;
   }

  .navmenu>ul>li>a::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-active-color);
    visibility: hidden;
    width: 0px;
    transition: width var(--transition-speed-medium) var(--easing-smooth);
  }

  .navmenu a:hover,
  .navmenu li:hover>a {
    color: var(--nav-hover-color);
  }
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-active-color) !important;
    background-color: transparent !important;
  }

  /* Underline animation */
  .navmenu a:hover::before,
  .navmenu li:hover>a::before,
  .navmenu .active::before {
    visibility: visible;
    width: 100%;
  }

   /* Hide mobile toggle on desktop */
   .mobile-nav-toggle {
      display: none !important;
   }

   /* Ensure dropdowns work correctly if added later */
   .navmenu .dropdown ul {
      display: block;
      position: absolute;
      left: 14px;
      top: calc(100% + 10px);
      margin: 0;
      padding: 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: var(--nav-dropdown-background-color);
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
      border-radius: 4px;
   }
   .navmenu .dropdown ul li { min-width: 200px; }
   .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
   }
   .navmenu .dropdown ul a i { display: inline-block; font-size: 12px; }
   .navmenu .dropdown ul a:hover,
   .navmenu .dropdown ul .active:hover,
   .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
   }
   .navmenu .dropdown:hover > ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
   }
   /* Nested Dropdowns */
   .navmenu .dropdown .dropdown ul {
       top: 0;
       left: calc(100% + 10px);
       visibility: hidden;
   }
   .navmenu .dropdown .dropdown:hover > ul {
       opacity: 1;
       top: 0;
       left: 100%;
       visibility: visible;
   }

} /* End Desktop Media Query */


/* Evita que el body se desplace mientras el menú está abierto */
body.mobile-nav-active{
  overflow:hidden;
}

@media (max-width: 1199px) {
   .mobile-nav-toggle {
      display: block;
      color: var(--color-white);
      font-size: 28px;
      cursor: pointer;
      transition: transform 0.3s ease, color 0.3s ease;
      line-height: 0;
      position: relative;
      z-index: 9999;
   }
   
   .mobile-nav-toggle:hover {
       color: var(--accent-color);
   }
   .mobile-nav-toggle.bi-x {
       display: none;
   }
   .mobile-nav-active .mobile-nav-toggle.bi-list {
       display: none;
   }
   .mobile-nav-active .mobile-nav-toggle.bi-x {
       display: block;
       position: fixed;
       top: 20px;
       right: 20px;
   }
}


    /* Styles for mobile links */
    .navmenu a, .navmenu a:focus {
        padding: 10px 20px;
        font-size: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--nav-dropdown-color);
        white-space: nowrap;
        transition: 0.3s;
    }
     .navmenu a:hover, .navmenu li:hover > a {
         color: var(--nav-dropdown-hover-color);
         background: rgba(255, 255, 255, 0.05);
      }
      /* Mobile Active Link */
      .navmenu .active, .navmenu .active:focus {
          color: var(--accent-color);
          background: rgba(250, 204, 21, 0.1);
      }
     /* Mobile Dropdown Toggle */
     .navmenu .toggle-dropdown > .bi { transition: transform 0.3s; }
     .navmenu .active > .toggle-dropdown > .bi { transform: rotate(180deg); }
     /* Mobile Dropdown UL */
     .navmenu .dropdown ul {
         position: static;
         display: none;
         z-index: 99;
         padding: 10px 0;
         margin: 10px 20px;
         background-color: rgba(255, 255, 255, 0.05);
         border-left: 3px solid var(--accent-color);
         transition: all 0.5s ease-in-out;
     }
     .navmenu .dropdown > .dropdown-active { display: block; }


/*--------------------------------------------------------------
# Sticky WhatsApp Button
--------------------------------------------------------------*/
.sticky-whatsapp {
  position: fixed;
  bottom: 75px; 
  right: 20px;
  z-index: 995;
  background-color: #25D366;
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.sticky-whatsapp i {
  font-size: 1.5rem;
  line-height: 0;
}

.sticky-whatsapp:hover {
  background-color: #1DAE52;
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px) scale(1.05);
}

.sticky-whatsapp.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/*--------------------------------------------------------------
# Sticky CTA Button
--------------------------------------------------------------*/
.sticky-cta {
  position: fixed;
  bottom: 20px; 
  left: 20px;
  z-index: 995;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.sticky-cta i {
  font-size: 1.2rem;
  margin-right: 8px;
  line-height: 0;
}

.sticky-cta:hover {
  background-color: var(--color-accent-yellow-darker);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px) scale(1.03); /* Efecto de elevación y ligero escalado */
}

/* Clase para mostrar el botón cuando se hace scroll */
.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Opcional: Ocultar el texto en pantallas pequeñas, dejando solo el icono */
@media (max-width: 768px) {
  .sticky-cta span {
    display: none; /* Ocultar texto */
  }
  .sticky-cta {
    padding: 12px 15px; /* Ajustar padding para el icono solo */
    width: 50px; /* Hacerlo más circular */
    height: 50px;
    justify-content: center;
  }
  .sticky-cta i {
    margin-right: 0;
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------------------
# Hero Section Enhancements
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex; /* <-- CENTRA CON FLEXBOX */
  align-items: center; /* <-- CENTRA CON FLEXBOX */
  overflow: hidden;
  background-color: var(--color-black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  content: "";
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.9));
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 250px 15px 100px 15px;
}

.hero .hero-title {
  margin: 0 auto 15px auto;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.3;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  max-width: 950px;
}
.hero .hero-title strong {
    font-weight: 900;
}

.hero .hero-subtitle {
  color: var(--color-light-gray);
  margin: 0 auto 30px auto;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 750px;
  opacity: 0.9;
  line-height: 1.6;
  font-weight: 300;
}
.hero .hero-subtitle strong {
   font-weight: 700;
   color: var(--color-white);
}
/* Hero CTA Subtext */
.hero .hero-cta-subtext {
  font-size: 0.9rem;
  color: var(--color-medium-gray);
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem !important;
}


/*--------------------------------------------------------------
# General Button Styles & Specific CTAs
--------------------------------------------------------------*/
.cta-principal {
    background: var(--accent-color);
    color: var(--contrast-color) !important;
    border: 2px solid var(--accent-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.25);
    transition:
      background-color var(--transition-speed-medium) var(--easing-smooth),
      box-shadow var(--transition-speed-medium) var(--easing-smooth),
      transform var(--transition-speed-medium) var(--easing-smooth),
      color 0s; /* Color cambia sin transición */
}

.cta-principal i {
    transition: transform var(--transition-speed-medium) var(--easing-smooth);
}

.cta-principal:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cta-principal:hover i {
    transform: translateX(5px);
}

.dark-background .cta-principal:hover,
.header .cta-btn:hover { /* Header CTA in dark background */
    background: var(--color-white);
    color: var(--color-black) !important;
    border-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Specific hover for hero audit button (yellow hover) */
.hero .cta-hero-audit {
    color: black !important;
    transition:
      background-color var(--transition-speed-medium) var(--easing-smooth),
      box-shadow var(--transition-speed-medium) var(--easing-smooth),
      transform var(--transition-speed-medium) var(--easing-smooth),
      color 0s;
}

.hero .cta-hero-audit:hover {
    background: var(--color-accent-yellow-darker) !important;
    border-color: var(--color-accent-yellow-darker) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3) !important;
}

.light-background .cta-principal:hover,
.section:not(.dark-background):not(.light-background) .cta-principal:hover {
    background: var(--color-accent-yellow-darker);
    border-color: var(--color-accent-yellow-darker);
    color: var(--color-black) !important;
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
}

.cta-principal.cta-principal-dark {
    background: var(--color-black);
    color: var(--color-white) !important;
    border-color: var(--color-black);
}

.cta-principal.cta-principal-dark:hover {
    background: var(--color-dark-gray);
    color: var(--color-white) !important;
    border-color: var(--color-dark-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Header CTA Button Specifics */
.header .cta-btn { /* This is the '.cta-principal' in the header */
    padding: 8px 20px;
    margin: 0 0 0 15px;
    /* order: 3; */
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .header .cta-btn {
        /* order: 2; */
        margin: 0 15px 0 0;
    }
}

/* Botón de "Más info" en los bloques de servicio del ecosistema */
.btn-card-detail {
    background: transparent;
    border: 2px solid var(--color-dark-gray);
    color: var(--color-dark-gray);
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all var(--transition-speed-medium) var(--easing-smooth);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-card-detail:hover {
    background: var(--color-dark-gray);
    border-color: var(--color-dark-gray);
    color: var(--color-white);
    transform: scale(1.05);
}

.btn-card-detail i {
    margin-left: 5px;
    transition: transform var(--transition-speed-medium) var(--easing-smooth);
}

.btn-card-detail:hover i {
    transform: translateX(4px);
}

/* Executive Newsletter Button */
#executive-newsletter-btn { /* Uses .cta-principal styling by default */ }

#executive-newsletter-btn:hover {
    background: var(--color-accent-yellow-darker);
    border-color: var(--color-accent-yellow-darker);
    color: var(--contrast-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
}

#executive-newsletter-form-div {} /* Handled by inline style + JS */

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section { scroll-margin-top: 90px; padding: 90px 0; overflow: hidden; }
.section.light-background { background-color: var(--color-light-gray); }
.section.dark-background { background-color: var(--color-black); }

/*--------------------------------------------------------------
# Section Title Enhancements
--------------------------------------------------------------*/
.section-title { padding-bottom: 60px; text-align: center; }
.section-title h2 { font-size: 14px; font-weight: 700; padding: 0; line-height: 1; margin: 0 0 15px 0; letter-spacing: 2px; text-transform: uppercase; color: var(--color-black); opacity: 0.8; }
.dark-background .section-title h2 { color: var(--color-white); opacity: 0.7; }
.section-title.text-start { text-align: left; }
.section-title.text-start h2, .section-title.text-start p { text-align: left; }
.section-title.text-start h2::before { display: none; }
.section-title.text-start h2::after { margin-left: 0; }
.section-title h2::after, .section-title h2::before { content: ""; width: 80px; height: 1px; display: inline-block; background: var(--accent-color); opacity: 0.5; margin: 0 10px; vertical-align: middle; }
.section-title p { color: var(--heading-color); margin: 0; font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 900; text-transform: uppercase; font-family: var(--heading-font); line-height: 1.35; }
.dark-background .section-title p { color: var(--heading-color); }

/*--------------------------------------------------------------
# Section 2: Qué Hacemos Por Ti? Specific Styles
--------------------------------------------------------------*/
.que-hacemos-item { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.que-hacemos-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.que-hacemos-item .icon i { transition: transform 0.3s ease; }
.que-hacemos-item:hover .icon i { transform: scale(1.1) rotate(-5deg); }

/*--------------------------------------------------------------
# Section 5: Ecosistema BLISS Specific Styles (MODIFICADO)
--------------------------------------------------------------*/
.service-block { 
  margin-bottom: 5rem; 
}
.service-block-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-block-logo {
  max-height: 75px;
  width: auto;
  align-self: center;
}

.logo-executive-specific {
  max-height: 55px !important;
}

.service-block-image {
  display: flex;
  align-items: center;
}

.service-block-image .interactive-image {
  max-height: 450px;
  width: auto;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .service-block-text { 
    padding-left: 3rem; 
    padding-right: 3rem; 
  }
  .service-block-image { 
    padding-left: 2rem; 
    padding-right: 2rem; 
  }
}

.service-block-text h4 { margin-bottom: 1.2rem !important; font-size: clamp(1rem, 2.5vw, 1.25rem); line-height: 1.4;}
.service-block-text p { margin-bottom: 1.2rem; line-height: 1.7; }
.service-block-text ul { margin-bottom: 1.2rem; }
@media (max-width: 991px) {
    .service-block.flex-row-reverse .col-lg-6.service-block-text { order: 1; }
    .service-block.flex-row-reverse .col-lg-6.service-block-image { order: 2; }
    .service-block .col-lg-6 { text-align: center !important; flex-basis: auto; width: 100%; padding-left: 15px !important; padding-right: 15px !important; }
    .service-block .interactive-image { max-width: 85%; margin-left: auto; margin-right: auto; margin-top: 1.5rem; }
}

/*--------------------------------------------------------------
# Clients Section Enhancements
--------------------------------------------------------------*/
.clients-section { padding: 80px 0; }
.client-logo-img { max-height: 55px; width: auto; object-fit: contain; opacity: 0.6; filter: grayscale(100%) contrast(90%); transition: all var(--transition-speed-medium) var(--easing-smooth); margin: 0 auto; display: block; }
.client-swiper .swiper-wrapper { display: flex; justify-content: center; align-items: center; }
.swiper-slide { display: flex; justify-content: center; align-items: center; cursor: grab; }
.swiper-slide:hover .client-logo-img { opacity: 1; filter: none; transform: scale(1.1); }
.swiper-pagination.client-pagination { position: relative; bottom: auto; margin-top: 30px; }
.swiper-pagination.client-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background-color: var(--color-medium-gray); opacity: 0.7; transition: all var(--transition-speed-fast) ease-out; }
.swiper-pagination.client-pagination .swiper-pagination-bullet-active { background-color: var(--accent-color); opacity: 1; width: 25px; border-radius: 5px; }

/*--------------------------------------------------------------
# Contact Section (Formulario Final) Enhancements
--------------------------------------------------------------*/
.contact#contact-final .info-container { display: none; }
@media (min-width: 992px) { .contact#contact-final .col-lg-8 { width: 66.66666667%; margin: 0 auto; flex: 0 0 auto; } }
@media (max-width: 991px) { .contact#contact-final .col-lg-8 { width: 100%; } }
.contact .php-email-form { background-color: var(--color-white); border-radius: 1rem; box-shadow: var(--shadow-md); border: 1px solid var(--border-color-light); padding: 2.5rem; height: 100%; }
.contact .php-email-form .form-label { font-weight: 500; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--heading-color); }
.contact .php-email-form .form-control, .contact .php-email-form .form-select, .contact .php-email-form textarea { font-size: 0.95rem; padding: 12px 15px; border-radius: 8px; color: var(--default-color); background-color: var(--color-light-gray); border: 1px solid transparent; transition: border-color var(--transition-speed-medium) ease, box-shadow var(--transition-speed-medium) ease, background-color var(--transition-speed-medium) ease; }
.contact .php-email-form .form-control:focus, .contact .php-email-form .form-select:focus, .contact .php-email-form textarea:focus { border-color: var(--accent-color); background-color: var(--color-white); box-shadow: 0 0 0 3px var(--color-accent-yellow-glow); outline: none; }
.contact .php-email-form select.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px 12px; }
/* PHP Form Messages */
.php-email-form .loading, .php-email-form .error-message, .php-email-form .sent-message { padding: 15px; margin: 15px 0 0 0; border-radius: 8px; font-weight: 500; display: none; text-align: center; }
.php-email-form .loading { background: var(--color-light-gray); }
.php-email-form .error-message { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.php-email-form .sent-message { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
@keyframes php-email-form-loading { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.php-email-form .loading:before { content: ""; display: inline-block; border-radius: 50%; width: 24px; height: 24px; margin: 0 10px -6px 0; border: 3px solid var(--accent-color); border-top-color: var(--color-light-gray); animation: php-email-form-loading 1s linear infinite; }

/*--------------------------------------------------------------
# Footer Enhancements
--------------------------------------------------------------*/
.footer {
  background-color: var(--color-black);
  color: var(--color-light-gray);
  font-size: 0.9rem;
  padding: 60px 0 0 0;
}

.footer .footer-top {
  padding: 0 0 40px 0;
  border-bottom: 1px solid var(--border-color-dark);
}

.footer .footer-about .logo span {
  color: var(--color-white);
  font-size: 1.8rem;
}
.footer .footer-about p {
  color: var(--color-medium-gray);
  line-height: 1.6;
}
.footer .footer-contact p {
   margin-bottom: 8px;
   color: var(--color-light-gray);
   display: flex;
   align-items: flex-start;
}
.footer .footer-contact i {
    color: var(--accent-color);
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer .footer-contact a {
    color: var(--color-light-gray);
    transition: color 0.2s ease;
}
.footer .footer-contact a:hover {
    color: var(--accent-color);
}

.footer .social-links a {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-light-gray);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  transition: background-color var(--transition-speed-medium) ease, transform var(--transition-speed-medium) ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  padding-bottom: 15px;
  color: var(--color-white);
  position: relative;
  margin-bottom: 15px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer .footer-links ul li { padding: 8px 0; }
.footer .footer-links ul a {
  color: var(--color-medium-gray);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
  position: relative;
}
.footer .footer-links ul a::before {
    content: '»';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: left 0.2s ease, opacity 0.2s ease;
    color: var(--accent-color);
}
.footer .footer-links ul a:hover {
  color: var(--color-white);
  padding-left: 5px;
}
.footer .footer-links ul a:hover::before {
    left: -10px;
    opacity: 1;
}

/* Newsletter Form */
.footer .footer-newsletter .newsletter-form {
  margin-top: 1.5rem;
  padding: 0;
  position: relative;
  border-radius: 50px;
  border: 1px solid var(--border-color-dark);
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 10px 20px;
  width: 100%;
  background-color: transparent;
  color: var(--color-white);
  font-size: 0.9rem;
}
.footer .footer-newsletter .newsletter-form input[type=email]::placeholder {
    color: var(--color-medium-gray);
    opacity: 0.7;
}
.footer .footer-newsletter .newsletter-form input[type=email]:focus {
    outline: none;
}

.footer .footer-newsletter .btn-newsletter {
  border: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: background-color 0.3s ease;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1.2rem;
}
.footer .footer-newsletter .btn-newsletter:hover {
  background: var(--color-accent-yellow-darker);
}
.footer .footer-newsletter .php-email-form .loading,
.footer .footer-newsletter .php-email-form .error-message,
.footer .footer-newsletter .php-email-form .sent-message {
    font-size: 0.85rem;
    margin-top: 10px;
    padding: 8px 15px;
    border-radius: 6px;
    text-align: left;
}

/* Footer Legal */
.footer-legal {
    font-size: 0.85rem;
}
.footer-legal a {
    color: var(--color-medium-gray);
}
.footer-legal a:hover {
    color: var(--color-white);
}

/* Footer Copyright */
.footer .copyright {
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
  border-top: 1px solid var(--border-color-dark);
  color: var(--color-medium-gray);
}
.footer .copyright .sitename {
  color: var(--color-white);
  font-weight: 700;
}
.footer .credits {
  margin-top: 6px;
  font-size: 0.8rem;
}
.footer .credits a {
  color: var(--accent-color);
}
.footer .credits a:hover {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Preloader Enhancement
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--color-black);
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader .preloader-spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
/* Optional logo in preloader */
#preloader .preloader-logo {
    max-height: 40px;
    opacity: 0.8;
    margin-top: 20px;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*--------------------------------------------------------------
# Scroll Top Button Enhancement
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-speed-medium) var(--easing-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--color-accent-yellow-darker);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 15px rgba(250, 204, 21, 0.4);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
    /* Stack service blocks on mobile */
    .service-block {
        flex-direction: column !important; /* Override flex-row-reverse */
    }
    .service-block .col-lg-6 { /* Apply to both columns on mobile */
        text-align: center !important;
        flex-basis: auto; /* Reset basis */
        width: 100%;
        padding-left: 15px !important; /* Reset padding */
        padding-right: 15px !important; /* Reset padding */
    }
     .service-block .interactive-image { /* Target the main image */
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 1.5rem;
    }
     .contact#contact-final .col-lg-8 { /* Ensure final form takes full width */
        width: 100%;
     }
}

/*--------------------------------------------------------------
# Prompts Section Styles
--------------------------------------------------------------*/
.prompts-section {
  background-color: var(--color-white);
}

.prompt-card {
  background: var(--surface-color);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border-color-light);
  transition: all var(--transition-speed-medium) var(--easing-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.prompt-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--accent-color), var(--color-accent-yellow-darker));
    opacity: 0;
    transition: opacity var(--transition-speed-medium) var(--easing-smooth);
    z-index: 0;
}

.prompt-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.prompt-card:hover::before {
    opacity: 1;
}

.prompt-card-icon,
.prompt-card h4.interactive-title-card,
.prompt-card p {
    position: relative;
    z-index: 1;
}


.prompt-card-icon {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
  transition: transform var(--transition-speed-medium) var(--easing-smooth);
}

.prompt-card:hover .prompt-card-icon {
  transform: scale(1.15) rotate(-5deg);
}

.prompt-card h4.interactive-title-card { /* Asegúrate que los h4 en las prompt cards tengan esta clase */
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.prompt-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--default-color);
  flex-grow: 1;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Prompt Modal Styles
--------------------------------------------------------------*/
.prompt-modal {
  position: fixed;
  inset: 0;
  z-index: 1055; /* Encima de otros elementos, incluso header */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
}

.prompt-modal.visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.prompt-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.85); /* Usar --color-black con opacidad */
  cursor: pointer;
}

.prompt-modal-content {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 700px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Clip content */
  transform: translateY(-20px) scale(0.98); /* Empezar ligeramente arriba y pequeño */
  transition: transform 0.3s var(--easing-smooth), opacity 0.3s var(--easing-smooth);
  opacity: 0; /* Empezar invisible para fade in */
}
.prompt-modal.visible .prompt-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}


.prompt-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-medium-gray);
  cursor: pointer;
  padding: 0.5rem; /* Área de click más grande */
  z-index: 10;
  transition: color 0.2s ease, transform 0.2s ease;
}
.prompt-modal-close:hover {
  color: var(--color-black);
  transform: rotate(90deg) scale(1.1);
}

.prompt-modal-title {
  font-size: 1.4rem; /* Ajustar tamaño */
  font-weight: 700;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem; /* Padding para dejar espacio al botón X */
  border-bottom: 1px solid var(--border-color-light);
  margin: 0;
  flex-shrink: 0; /* Evitar que se encoja */
  color: var(--heading-color);
}

.prompt-modal-body {
  padding: 1.5rem;
  overflow-y: auto; /* Scroll si el prompt es largo */
  flex-grow: 1;
}

.prompt-modal-body pre {
  background-color: var(--color-light-gray);
  padding: 1.25rem; /* Más padding */
  border-radius: 0.5rem;
  white-space: pre-wrap;       /* Wrap long lines */
  word-wrap: break-word;      /* Break long words */
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; /* Fuentes monoespaciadas comunes */
  font-size: 0.95rem;
  line-height: 1.7; /* Mejorar legibilidad */
  color: var(--color-dark-gray);
  border: 1px solid var(--border-color-light);
  margin: 0;
}
.prompt-modal-body code {
    font-family: inherit;
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit; /* Asegurar que hereda el tamaño */
}


.prompt-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color-light);
  text-align: right;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

/* Estilo del botón de copiar (usa .cta-main) */
#copyPromptButton {
  /* Hereda de .cta-main si se le aplica esa clase en el HTML */
  /* O puedes darle estilos específicos aquí */
}

.copy-feedback {
  font-size: 0.9rem;
  color: var(--bs-success); /* Bootstrap success color */
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-feedback.visible {
  opacity: 1;
}

body.mobile-nav-active main,
body.mobile-nav-active footer{
  pointer-events:none;      /* bloquea clics/scroll en el fondo */
  filter:blur(1px);         /* efecto visual ligero */
}

/* ============================================================
   MOBILE NAV – ESTILO BLISS
   ============================================================ */
@media (max-width: 1199px) {

  /* Botón ✕: visibilidad y cómoda pulsación */
  .mobile-nav-toggle.bi-x{
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    padding: 6px;
  }

  /* <header> sobre el resto */
  body.mobile-nav-active #header{
    z-index: 100000 !important;
  }

  /* Icono ☰ / ✕ el más alto de todos */
  body.mobile-nav-active .mobile-nav-toggle{
    z-index: 100002 !important;
  }
  
  /* ============================================
     MENÚ MÓVIL — OCULTAR / MOSTRAR CORRECTAMENTE
     ============================================ */
  
  /* ❶ Oculto por defecto en pantallas <1200 px */
  .navmenu{                       /* ← clase, no id */
    display: none !important;
  }
  
  /* ❷ Visible SOLO cuando abrimos la hamburguesa */
  body.mobile-nav-active .navmenu{
    display: block !important;
    position: fixed;
    inset: 0;                     /* ocupa viewport */
    width: 100vw;
    height: 100vh;
    background: var(--color-black);
    padding: 80px 0 60px;         /* hueco para header */
    overflow-y: auto;
    z-index: 100001;              /* sobre todo */
    animation: slideDown .35s ease-out both;
  }
  
  /* lista formateada */
  body.mobile-nav-active .navmenu > ul{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0;
    padding: 0 32px 40px;
    list-style: none;
  }
  
  /* enlaces */
  body.mobile-nav-active .navmenu a{
    width: 100%;
    padding: 8px 0;
  }
  
  /* pequeña animación de entrada */
  @keyframes slideDown{
    from{ transform: translateY(-8%); opacity: 0; }
    to  { transform: none;           opacity: 1; }
  }
}

/*--------------------------------------------------------------
# Hero Section Decorative Logos (POSICIÓN AJUSTADA)
--------------------------------------------------------------*/
.hero-logos-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-logos-bottom {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-48%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8vw;
}

.hero-logo-bottom-item {
  width: auto;
  opacity: 0.6;
}

.logo-ai {
  max-height: 180px;
}

.logo-tp {
  max-height: 150px;
}

.logo-hero-executive {
  max-height: 250px;
}

/* Ocultar logos decorativos en pantallas pequeñas */
@media (max-width: 768px) {
  /* .hero-logos-container {
    display: none;
  } */
 .hero-logos-bottom{
  display: none;
 }
}

/*--------------------------------------------------------------
# NUEVA SECCIÓN: Sobre Nosotros
--------------------------------------------------------------*/
.about-us-section {
  position: relative;
  overflow: hidden;
  color: var(--color-light-gray);
}

.about-us-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23facd15' fill-opacity='0.8'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-us-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23facd15' fill-opacity='0.8'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-us-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 900;
  color: var(--color-white);
}

.about-us-col p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-us-col .highlight {
  font-weight: 700;
}

.with-vertical-line {
  position: relative;
  padding-left: 2.5rem;
}

.with-vertical-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.custom-bullet-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.custom-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .with-vertical-line {
    padding-left: 0;
    margin-top: 3rem;
  }
  .with-vertical-line::before {
    display: none;
  }
}