/* ============================================================
   CREO — Components CSS
   Botones, Nav, Header, Footer, Cards, Forms, Secciones
   ============================================================ */

/* ─── BOTONES ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn:focus-visible {
  outline: 3px solid var(--creo-accent);
  outline-offset: 3px;
}

.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--creo-accent);
  color: var(--creo-white);
}

.btn-secondary {
  background: transparent;
  color: var(--creo-accent);
  box-shadow: inset 0 0 0 1.5px var(--creo-accent);
}

/* Moving Light Mask */
.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background-size: 200% 100%;
  animation: borderLightMove 2.5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 5;
  pointer-events: none;
}

.btn-primary::before {
  background-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
}

.btn-secondary::before {
  background-image: linear-gradient(90deg, transparent 0%, var(--creo-accent) 50%, transparent 100%);
}

@keyframes borderLightMove {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

/* Hover glow and scale */
.btn-primary:hover,
.btn-secondary:hover {
  transform: scale(1.3);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.8), 0 0 60px rgba(255, 106, 0, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 106, 0, 0.1);
  box-shadow: inset 0 0 0 1.5px var(--creo-accent), 0 0 30px rgba(255, 106, 0, 0.8);
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(1.2);
}

/* Hover SVG Arrow Inject */
.btn-primary::after,
.btn-secondary::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: 0;
  transform: translateX(5px);
  pointer-events: none;
}

.btn-primary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}

.btn-secondary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6a00' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  width: 18px;
  opacity: 1;
  margin-left: 10px;
  transform: translateX(0);
}

.btn-white {
  background: var(--creo-white);
  color: var(--creo-dark);
}

.btn-white:hover {
  background: var(--creo-light);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--creo-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-white-outline:hover {
  border-color: var(--creo-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ─── TAG / BADGE ────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-accent {
  background: rgba(255, 106, 0, 0.12);
  color: var(--creo-accent);
}

.tag-dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--creo-white);
}

.tag-light {
  background: rgba(11, 23, 61, 0.08);
  color: var(--creo-dark);
}

/* ─── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  display: flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 var(--space-4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-container);
}

.site-header.is-scrolled {
  top: 16px;
  height: auto;
}

@media (min-width: 1024px) {
  .site-header.is-scrolled {
    height: 64px;
  }
}

.site-header.is-scrolled .container {
  background: rgba(11, 23, 61, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  width: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  .site-header.is-scrolled .container {
    padding: 0 8px 0 24px;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: gap 0.5s ease;
}

.site-header.is-scrolled .nav-brand {
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

/* Invert dark logo to white when header-light becomes scrolled */
.site-header.header-light.is-scrolled .nav-logo img[src*="dark"] {
  filter: brightness(0) invert(1);
}

.nav-logo-sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}

.site-header.is-scrolled .nav-logo-sep {
  height: 0;
  opacity: 0;
  margin-left: -16px;
}

.nav-logo-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.5s ease;
}

.site-header.is-scrolled .nav-logo-text {
  max-width: 0;
  opacity: 0;
  padding: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  max-width: 800px;
  opacity: 1;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.site-header.is-scrolled .nav-links {
  max-width: 0;
  opacity: 0;
  gap: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--creo-white);
  background: rgba(11, 23, 61, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-btn);
  padding: 10px 20px;
  text-decoration: none;
  font-family: var(--font-body);
  display: inline-flex;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link-inner {
  position: relative;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-inner::after {
  content: attr(data-text);
  position: absolute;
  top: 150%;
  left: 0;
  color: var(--creo-white);
}

.nav-link:hover .nav-link-inner {
  transform: translateY(-150%);
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.site-header.is-scrolled .nav-cta-wrap {
  margin-left: 24px;
}

@media (min-width: 1024px) {
  .site-header.is-scrolled .nav-cta-wrap {
    margin-left: 48px;
  }
}

/* ─── CONTACT US URGENCY BUTTON ───────────────────────────────────────────── */
.btn-contact-urgency {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--creo-white);
  text-decoration: none;
  background: transparent;
  border: none;
  animation: urgencyBreath 3s ease-in-out infinite;
  z-index: 1;
}

/* Moving border light using conic gradient */
.btn-contact-urgency::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 60%, #FF6A00 85%, transparent 100%);
  animation: rotateLight 2s linear infinite;
  z-index: -2;
}

/* Inner overlay matching button color */
.btn-contact-urgency::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--creo-accent);
  border-radius: var(--radius-btn);
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-contact-urgency:hover::after {
  background: var(--creo-accent-hover);
}

.btn-contact-urgency:hover {
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 1.5em 0.2em rgba(255, 106, 0, 0.6);
  animation:
    ripple 1s linear infinite,
    colorize 0.8s infinite;
  transition: 0.5s;
  transform: scale(1.02);
  color: #fff;
}

.btn-contact-urgency span:not(.btn-contact-text) {
  transition: 0.5s;
}

.btn-contact-urgency:hover span:not(.btn-contact-text) {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Lucide Icon Animation: Swap Position (Idle 10px -> Hover 8px gap) */
.btn-contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.btn-contact-text {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.btn-contact-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.btn-contact-icon-wrap svg {
  color: #fff;
  width: 20px;
  height: 20px;
}

/* Swap Logic: Text (~94px) and Icon (20px). Idle Gap 10px. Hover Gap 8px. */
.btn-contact-urgency:hover .btn-contact-text {
  transform: translateX(28px) !important;
}

.btn-contact-urgency:hover .btn-contact-icon-wrap {
  transform: translateX(-105px) !important;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .btn-contact-urgency:hover .btn-contact-text {
    transform: translateX(28px) !important;
  }

  .btn-contact-urgency:hover .btn-contact-icon-wrap {
    transform: translateX(-105px) !important;
  }
}

@keyframes colorize {
  0% {
    background: var(--creo-accent);
  }

  50% {
    background: var(--creo-accent-hover);
  }

  100% {
    background: var(--creo-accent);
  }
}

@keyframes ripple {
  0% {
    outline: 0em solid transparent;
    outline-offset: -0.1em;
  }

  50% {
    outline: 0.2em solid rgba(255, 106, 0, 0.5);
    outline-offset: 0.2em;
  }

  100% {
    outline: 0.4em solid transparent;
    outline-offset: 0.6em;
  }
}

@keyframes rotateLight {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes urgencyBreath {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 106, 0, 0);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 16px rgba(255, 106, 0, 0.4);
  }
}

@keyframes urgencyBreathHover {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.5);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.9);
  }
}

/* Light Header Overrides */
.site-header.header-light:not(.is-scrolled) .nav-logo-sep {
  background: rgba(11, 23, 61, 0.2);
}

.site-header.header-light:not(.is-scrolled) .nav-logo-text {
  color: rgba(11, 23, 61, 0.6);
}

.site-header.header-light:not(.is-scrolled) .nav-link {
  color: var(--creo-dark);
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.site-header.header-light:not(.is-scrolled) .nav-link-inner::after {
  color: var(--creo-dark);
}

.site-header.header-light:not(.is-scrolled) .nav-link:hover,
.site-header.header-light:not(.is-scrolled) .nav-link.active {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

/* ─── MOBILE MENU BUTTON ────────────────────────────────────────── */
.nav-mobile-btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--creo-white);
  background: var(--creo-accent);
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 1100;
}

/* Hamburger Menu Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

@media (max-width: 1023px) {
  .nav-hamburger {
    display: flex;
  }
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--creo-accent);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.site-header:not(.scrolled) .hamburger-line {
  background-color: var(--creo-white);
}

.site-header.header-light:not(.scrolled) .hamburger-line {
  background-color: var(--creo-accent);
}

/* Utils */
.hide-mobile {
  display: none !important;
}

@media (min-width: 1024px) {
  .hide-mobile {
    display: inline-flex !important;
  }
}

.hide-desktop {
  display: inline-flex !important;
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ─── BENTO GRID SECTION (Reality Check) ───────────────── */
.bento-section {
  padding: var(--space-15) 0;
  overflow: hidden;
  position: relative;
}

.bento-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.bento-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--creo-white);
}

.bento-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.bento-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
  grid-template-areas:
    "item1"
    "item2"
    "item3"
    "item4"
    "item5";
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "item1 item1"
      "item2 item3"
      "item4 item5";
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "item1 item2 item3"
      "item4 item4 item5"
      "item6 item6 item6";
  }
}

.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Radial Glow Effect */
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 106, 0, 0.06),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card__content {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--creo-white);
}

.bento-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.bento-card__visual {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0.8;
}

/* Area mapping */
.bento-item-1 {
  grid-area: item1;
}

/* ============================================================
   GAMIFICATION & INTERACTIVE COMPONENTS
   ============================================================ */

/* ─── TOGGLES (Cookie Policy) ──────────────────────────────── */
.creo-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.creo-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--creo-mid);
  transition: .4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--creo-white);
  transition: .4s;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.creo-toggle input:checked+.toggle-slider {
  background-color: var(--creo-success);
}

.creo-toggle input:focus+.toggle-slider {
  box-shadow: 0 0 1px var(--creo-success);
}

.creo-toggle input:checked+.toggle-slider:before {
  transform: translateX(20px);
}

.creo-toggle input:disabled+.toggle-slider {
  background-color: var(--creo-mid);
  opacity: 0.6;
  cursor: not-allowed;
}

/* ─── RANGE SLIDER (Custom) ────────────────────────────────── */
.creo-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-sm);
  background: var(--creo-mid);
  outline: none;
  opacity: 0.9;
  transition: opacity .2s;
}

.creo-slider:hover {
  opacity: 1;
}

.creo-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--creo-accent);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.creo-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-accent);
}

/* ─── GAMIFIED FORMS (Careers & How we Work) ───────────────── */
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--creo-mid);
  z-index: 1;
  transform: translateY(-50%);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--creo-mid);
  color: var(--creo-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-base);
}

.step-dot.active {
  background: var(--creo-accent);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.2);
}

.step-dot.completed {
  background: var(--creo-success);
}

/* ─── PRIVACY SCORE GAUGE ──────────────────────────────────── */
.privacy-gauge-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.privacy-gauge-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid var(--creo-mid);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-slow);
}

.privacy-gauge-score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--creo-dark);
}

/* ─── TIMELINE ANIMATIONS ──────────────────────────────────── */
.timeline-track {
  position: relative;
  padding-left: 24px;
  margin-top: var(--space-4);
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--creo-mid);
}

.timeline-step {
  position: relative;
  padding-bottom: var(--space-6);
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--creo-mid);
  border: 2px solid var(--creo-white);
  transition: var(--transition-base);
}

.timeline-step:hover::before,
.timeline-step.active::before {
  background: var(--creo-accent);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.2);
}

.bento-item-2 {
  grid-area: item2;
}

.bento-item-3 {
  grid-area: item3;
}

.bento-item-4 {
  grid-area: item4;
}

.bento-item-5 {
  grid-area: item5;
}

.bento-item-6 {
  grid-area: item6;
}

/* Horizontal card adjustments */
.bento-item-4 {
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.bento-item-4 .bento-card__content {
  margin-bottom: 0;
  flex: 1;
}

.bento-item-4 .bento-card__visual {
  flex: 1;
  height: 100%;
}

/* CTA Card (Bento Item 6) Styling */
.bento-item-6 {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 40px 60px;
  min-height: 200px;
}

.bento-item-6 .bento-card__content {
  margin-bottom: 0;
  flex: 1;
}

.bento-item-6 .bento-card__content p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--creo-white);
  line-height: 1.3;
}

.bento-item-6 .bento-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 106, 0, 0.4);
  flex-shrink: 0;
}

.bento-item-6 .btn {
  padding: 16px 40px;
  font-size: 1.1rem;
}

@media (max-width: 1023px) {
  .bento-item-6 {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 32px;
  }
}

.nav-mobile-btn:hover {
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 1em 0 var(--creo-accent);
  animation:
    ripple 1s linear infinite,
    colorize 1s infinite;
  transition: 0.5s;
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .nav-mobile-btn {
    display: none;
  }
}

.site-header.header-light:not(.is-scrolled) .nav-mobile-btn {
  color: var(--creo-dark);
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

/* ─── FULLSCREEN MOBILE MENU ────────────────────────────────────── */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--creo-dark);
  color: var(--creo-white);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  overflow: hidden;
}

.nav-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-4);
  z-index: 2;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .mobile-menu-inner {
    padding: var(--space-6) var(--space-8);
  }
}

/* Header inside menu */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}

.mobile-menu-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--creo-accent);
  text-transform: uppercase;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--creo-white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

/* Main Links */
.mobile-main-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.mobile-huge-link {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 700;
  color: var(--creo-white);
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: inline-block;
  align-self: flex-start;
  transform: translateY(20px);
  opacity: 0;
}

.nav-mobile-menu.is-open .mobile-huge-link {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger animation based on child number */
.nav-mobile-menu.is-open .mobile-huge-link:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-mobile-menu.is-open .mobile-huge-link:nth-child(2) {
  transition-delay: 0.15s;
}

.nav-mobile-menu.is-open .mobile-huge-link:nth-child(3) {
  transition-delay: 0.2s;
}

.nav-mobile-menu.is-open .mobile-huge-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-huge-link:hover {
  color: var(--creo-accent);
  transform: translateX(16px) !important;
  text-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

/* Contact Us Large Row */
.mobile-contact-row {
  margin-top: auto;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.3s;
}

.nav-mobile-menu.is-open .mobile-contact-row {
  transform: translateY(0);
  opacity: 1;
}

.mobile-contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  padding: 16px 24px;
  border-radius: var(--radius-btn);
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: urgencyBreath 3s ease-in-out infinite;
  z-index: 1;
}

.mobile-contact-link::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 60%, rgba(255, 106, 0, 0.8) 80%, transparent 100%);
  animation: rotateLight 3s linear infinite;
  z-index: -2;
}

.mobile-contact-link::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0b173d;
  border-radius: var(--radius-btn);
  z-index: -1;
  transition: all 0.3s ease;
}

.mobile-contact-link:hover {
  animation: urgencyBreathHover 2s ease-in-out infinite;
}

.mobile-contact-link:hover::after {
  background: #11204d;
}

.mobile-contact-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--creo-accent);
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}

.mobile-contact-circle {
  width: clamp(40px, 10vw, 48px);
  height: clamp(40px, 10vw, 48px);
  background: var(--creo-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--creo-white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.mobile-contact-link:hover .mobile-contact-circle {
  transform: translateY(-4px) translateX(4px);
  box-shadow: 0 8px 16px rgba(255, 106, 0, 0.4);
}

.mobile-contact-link:hover::after {
  background: #11204d;
}

.mobile-contact-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--creo-accent);
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}

.mobile-contact-circle {
  width: clamp(40px, 10vw, 48px);
  height: clamp(40px, 10vw, 48px);
  background: var(--creo-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--creo-white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.mobile-contact-link:hover .mobile-contact-circle {
  transform: translateY(-4px) translateX(4px);
  box-shadow: 0 8px 16px rgba(255, 106, 0, 0.4);
}

/* Footer info inside menu */
.mobile-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  gap: 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.4s;
}

.nav-mobile-menu.is-open .mobile-menu-footer {
  transform: translateY(0);
  opacity: 1;
}

.mobile-footer-text p {
  margin: 0;
  line-height: 1.6;
}

.mobile-footer-text .orange-text {
  color: var(--creo-accent);
  font-weight: 700;
  margin-top: 4px;
}

.mobile-footer-text.right {
  text-align: right;
}

/* Giant background text */
.mobile-bg-text {
  position: absolute;
  bottom: -15vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(20rem, 50vw, 40rem);
  font-weight: 900;
  line-height: 0.7;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

/* Gradient overlay on bg text so it blends to orange at the bottom */
.nav-mobile-menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: linear-gradient(to top, rgba(255, 106, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  color: var(--creo-light);
  font-family: 'Epilogue', sans-serif;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0B173D;
}

.footer-top-section {
  background: #060D24;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.footer-bottom-section {
  background: #0B173D;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 150px;
  /* Increased bottom padding to prevent clipping */
}

.footer-container {
  position: relative;
  z-index: 2;
}

/* TOP: Newsletter + Links */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-height: 200px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* Newsletter Section */
.footer-newsletter {
  max-width: 500px;
}

.footer-newsletter h2 {
  font-family: 'Epilogue', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--creo-light);
  margin-bottom: 32px;
}

.newsletter-form {
  position: relative;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  /* very dark input bg */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--creo-light);
  font-size: 16px;
  padding: 12px 16px;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(239, 229, 207, 0.6);
}

.newsletter-btn {
  white-space: nowrap;
  padding: 10px 24px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: var(--creo-accent-hover);
  color: var(--creo-dark);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.newsletter-btn:hover {
  background-color: #e55a00;
  color: #fff;
}

.newsletter-spam {
  font-size: 11px;
  color: rgba(239, 229, 207, 0.6);
  margin-bottom: 0;
}

/* Links Grid Section */
.footer-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-links-grid {
    gap: 80px;
  }
}

.footer-col h4 {
  font-family: 'Epilogue', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--creo-light);
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: normal;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col nav a {
  color: rgba(239, 229, 207, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col nav a:hover {
  color: var(--creo-light);
}

/* MIDDLE: Holita, Copyright, Socials */
.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  /* White separator */
  font-size: 14px;
  color: rgba(239, 229, 207, 0.7);
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .footer-middle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-greeting {
  font-weight: 500;
  color: var(--creo-light);
}

.footer-copyright {
  text-align: center;
}

.footer-socials-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-socials-right a {
  color: var(--creo-light);
  opacity: 0.8;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials-right a:hover {
  opacity: 1;
}

/* BOTTOM: Giant CREO Text */
.footer-bottom-logo {
  text-align: center;
  width: 100%;
  font-family: 'Montecatini', serif;
  font-weight: 900;
  /* Reduced size slightly and improved line-height to fit the container */
  font-size: 24vw;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
  user-select: none;
  pointer-events: none;

  /* Gradient text fill */
  background: linear-gradient(180deg, #060D24 0%, rgba(11, 23, 61, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1400px) {
  .footer-bottom-logo {
    font-size: 380px;
    margin-bottom: -80px;
  }
}

/* ─── SECCIÓN HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--creo-dark);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 106, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(255, 106, 0, 0.06) 0%, transparent 60%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-accent);
  margin-bottom: var(--space-3);
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--creo-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--creo-white);
  margin-bottom: var(--space-3);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero-stats {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--creo-accent);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── HERO REDESIGN (TYPEWRITER & VISUALS) ─────────────────── */

/* Typewriter Effect */
.typewriter-text {
  display: inline-block;
  white-space: nowrap;
  color: var(--creo-accent);
}

.typewriter-cursor {
  display: inline-block;
  color: var(--creo-accent);
  margin-left: 2px;
  animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Hero Floating Visuals (Desktop) */
.desktop-hero-visuals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  display: none;
}

@media (min-width: 1024px) {
  .desktop-hero-visuals {
    display: block;
  }
}

.hero-visual-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.hero-visual-card.is-active {
  display: block;
  opacity: 1;
  /* Reset transform in specific classes instead of here to preserve rotation */
}

.hero-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-tooltip {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Specific Card Positions */
.card-top-left {
  top: -5%;
  left: -10%;
  width: 220px;
  height: 160px;
  transform: rotate(-5deg) translateY(20px) scale(0.95);
}

.card-top-left.is-active {
  transform: rotate(-5deg) translateY(0) scale(1);
}

.card-top-right {
  top: 5%;
  right: -10%;
  width: 240px;
  height: 180px;
  transform: rotate(8deg) translateY(20px) scale(0.95);
}

.card-top-right.is-active {
  transform: rotate(8deg) translateY(0) scale(1);
}

.card-bottom-left {
  bottom: 5%;
  left: -5%;
  width: 180px;
  height: 240px;
  transform: rotate(-8deg) translateY(20px) scale(0.95);
}

.card-bottom-left.is-active {
  transform: rotate(-8deg) translateY(0) scale(1);
}

.card-bottom-right {
  bottom: 0%;
  right: 0%;
  width: 200px;
  height: 200px;
  transform: rotate(5deg) translateY(20px) scale(0.95);
}

.card-bottom-right.is-active {
  transform: rotate(5deg) translateY(0) scale(1);
}

/* Mobile Infinite Marquee */
.mobile-hero-visuals {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .mobile-hero-visuals {
    display: none;
  }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 20s linear infinite;
  gap: 16px;
  padding: 0;
}

.marquee-track .hero-visual-card {
  display: block;
  position: relative;
  opacity: 1;
  transform: none;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.marquee-track .visual-tooltip {
  top: 8px;
  left: 8px;
  font-size: 0.75rem;
  padding: 4px 12px;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 8px));
  }
}

/* ─── SECTION HEADER (SECCIONES) ────────────────────────────── */
.section {
  padding: var(--space-15) 0;
}

@media (max-width: 767px) {
  .section {
    padding: var(--space-8) 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-header .tag {
  margin-bottom: var(--space-2);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: var(--space-2);
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--creo-muted);
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .section-header h2 {
  color: var(--creo-white);
}

/* ─── GRIDS ──────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

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

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

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

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

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

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

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--creo-white);
  border: var(--border-light);
  border-radius: var(--radius-container);
  padding: var(--space-4);
  transition: var(--transition-slow);
}

.card:hover {
  border-color: var(--creo-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card {
  background: var(--creo-white);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 106, 0, 0.1);
  color: var(--creo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  transition: var(--transition-base);
}

.card:hover .service-card__icon {
  background: var(--creo-accent);
  color: var(--creo-white);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--creo-dark);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--creo-muted);
  line-height: 1.65;
  margin-bottom: var(--space-2);
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--creo-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}

.card-link:hover {
  gap: 10px;
}

/* Pain Point Card */
.pain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-container);
  padding: var(--space-4);
  transition: var(--transition-slow);
}

.pain-card:hover {
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
}

.pain-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 106, 0, 0.15);
  color: var(--creo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.pain-card h3 {
  font-size: 1.125rem;
  color: var(--creo-white);
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* Process Step Card */
.process-step {
  position: relative;
  text-align: center;
  padding: var(--space-4);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 106, 0, 0.15);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.process-step__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-container);
  background: rgba(255, 106, 0, 0.1);
  color: var(--creo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.process-step:hover .process-step__icon {
  background: var(--creo-accent);
  color: var(--creo-white);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--creo-muted);
}

.section-dark .process-step p {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .process-step h3 {
  color: var(--creo-white);
}

/* Process connector line */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

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

@media (min-width: 768px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.666% + 32px);
    right: calc(16.666% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--creo-accent), rgba(255, 106, 0, 0.3));
    z-index: 0;
  }
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius-container);
  border: 1px solid var(--creo-mid);
  background: var(--creo-white);
  transition: var(--transition-slow);
}

.stat-card:hover {
  border-color: var(--creo-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--creo-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--creo-muted);
  margin-top: 8px;
}

.section-dark .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

/* Testimonial Card */
.testimonial-card {
  background: var(--creo-white);
  border: var(--border-light);
  border-radius: var(--radius-container);
  padding: var(--space-6);
  position: relative;
  transition: var(--transition-slow);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--creo-accent);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--creo-text);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--creo-accent);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
  font-style: normal;
  font-family: var(--font-display);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--creo-accent), #e05e00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--creo-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--creo-dark);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--creo-muted);
}

/* Industry Card */
.industry-card {
  background: var(--creo-white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  transition: var(--transition-slow);
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--creo-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.industry-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(255, 106, 0, 0.1);
  color: var(--creo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  font-size: 1.75rem;
  transition: var(--transition-base);
}

.industry-card:hover .industry-card__icon {
  background: var(--creo-accent);
  color: var(--creo-white);
}

.industry-card h3 {
  font-size: 1.125rem;
  margin-bottom: 6px;
  color: var(--creo-dark);
}

.industry-card p {
  font-size: 0.875rem;
  color: var(--creo-muted);
  line-height: 1.6;
}

/* Case Study Card */
.case-card {
  background: var(--creo-white);
  border: var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-slow);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-card-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--creo-dark), rgba(255, 106, 0, 0.3));
  position: relative;
  overflow: hidden;
}

.case-card-body {
  padding: var(--space-4);
}

.case-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 6px;
  color: var(--creo-dark);
}

.case-card-body p {
  font-size: 0.875rem;
  color: var(--creo-muted);
  margin-bottom: var(--space-2);
}

/* ─── FORMS ─────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--creo-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--creo-mid);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--creo-white);
  color: var(--creo-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  outline: none;
}

.form-textarea {
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--creo-accent);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--creo-error);
}

.form-error {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--creo-error);
  margin-top: 4px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-3);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--creo-success);
  border-radius: var(--radius-md);
  color: #16a34a;
  font-weight: 500;
}

/* ─── ACCORDION / FAQ ─────────────────────────────────────────── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accordion-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--creo-mid);
  transition: var(--transition-base);
}

.accordion-item.is-open {
  border-color: var(--creo-accent);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--space-3);
  background: var(--creo-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--creo-dark);
  font-family: var(--font-body);
  transition: var(--transition-base);
}

.accordion-trigger:hover {
  color: var(--creo-accent);
}

.accordion-item.is-open .accordion-trigger {
  color: var(--creo-accent);
}

.accordion-icon {
  flex-shrink: 0;
  color: var(--creo-accent);
  transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-body-inner {
  padding: 0 var(--space-3) var(--space-3);
  font-size: 0.9375rem;
  color: var(--creo-muted);
  line-height: 1.75;
}

/* ─── ROI CALCULATOR ─────────────────────────────────────────── */
.roi-calculator {
  background: var(--creo-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.roi-calculator h3 {
  font-size: 1.5rem;
  color: var(--creo-white);
  margin-bottom: var(--space-2);
}

.roi-calculator>p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-4);
}

.roi-inputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.roi-input-wrap label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.roi-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--creo-white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease;
}

.roi-input:focus {
  border-color: var(--creo-accent);
}

.roi-results {
  display: none;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.roi-results.is-visible {
  display: grid;
}

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

.roi-result-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.roi-result-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--creo-accent);
}

.roi-result-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.roi-cta {
  margin-top: var(--space-4);
  text-align: center;
}

/* ─── FILTER BAR ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--creo-mid);
  background: var(--creo-white);
  color: var(--creo-muted);
  transition: var(--transition-base);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--creo-accent);
  color: var(--creo-accent);
  background: rgba(255, 106, 0, 0.06);
}

/* ─── CTA BAND (FINAL DE SECCIÓN) ─────────────────────────────── */
.cta-band {
  background: var(--creo-dark);
  text-align: center;
  padding: var(--space-15) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 106, 0, 0.12), transparent);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--creo-white);
  margin-bottom: var(--space-2);
}

.cta-band p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto var(--space-6);
}

.cta-band-btns {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PAGE HERO (no index) ────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + var(--space-12)) 0 var(--space-12);
  background: var(--creo-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(255, 106, 0, 0.1) 0%, transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--creo-white);
  margin-bottom: var(--space-2);
}

.page-hero .hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin-bottom: var(--space-6);
}

/* ─── TIMELINE / PROCESO ─────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: var(--space-4);
  padding-bottom: var(--space-6);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--creo-accent);
  color: var(--creo-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9375rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.2);
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--creo-accent), rgba(255, 106, 0, 0.1));
  margin-top: 8px;
  min-height: 40px;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-content {
  padding-top: 10px;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--creo-muted);
  line-height: 1.7;
}

.section-dark .timeline-content p {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .timeline-content h3 {
  color: var(--creo-white);
}

/* ─── TWO-COL FEATURE ─────────────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

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

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse>* {
  direction: ltr;
}

.feature-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--creo-dark), rgba(255, 106, 0, 0.15));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 106, 0, 0.3);
  font-size: 8rem;
}

.feature-text h2 {
  margin-bottom: var(--space-2);
}

.feature-text p {
  color: var(--creo-muted);
  margin-bottom: var(--space-4);
  line-height: 1.75;
}

.section-dark .feature-text p {
  color: rgba(255, 255, 255, 0.65);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 0.9375rem;
  color: var(--creo-muted);
}

.section-dark .feature-list-item {
  color: rgba(255, 255, 255, 0.65);
}

.feature-list-item svg {
  color: var(--creo-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  max-width: 500px;
  background: var(--creo-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  border: 1px solid var(--creo-mid);
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.875rem;
  color: var(--creo-muted);
  margin-bottom: var(--space-2);
}

.cookie-banner-btns {
  display: flex;
  gap: var(--space-1);
}

/* ─── SCROLL TO TOP ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: var(--space-3);
  right: var(--space-3);
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--creo-accent);
  color: var(--creo-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
}

/* ─── CONTACT PAGE SPECIFICS ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

.contact-info p {
  color: var(--creo-muted);
  margin-bottom: var(--space-4);
}

.contact-why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-why-item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.contact-why-item__icon {
  color: var(--creo-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--creo-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--creo-mid);
}

/* Calendly Embed */
.calendly-embed-wrap {
  min-height: 700px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--creo-mid);
}

/* ─── RESPONSIVE UTILITIES ───────────────────────────────────── */
.hide-mobile {
  display: none;
}

.hide-desktop {
  display: block;
}

@media (min-width: 1024px) {
  .hide-mobile {
    display: block;
  }

  .hide-desktop {
    display: none;
  }
}

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

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

/* ─── GRADIENT TEXT ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--creo-accent) 0%, #ffaa44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── HERO SUB (index) ───────────────────────────────────────── */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

/* ─── FILTER BTN ACTIVE STATE ────────────────────────────────── */
.filter-btn.is-active {
  border-color: var(--creo-accent);
  color: var(--creo-accent);
  background: rgba(255, 106, 0, 0.08);
}

/* ─── CASES GRID ─────────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

/* Case card inner structure */
.case-card {
  padding: var(--space-6);
}

.case-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
  gap: 8px;
}

.case-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--creo-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--creo-dark);
  line-height: 1.35;
  margin-bottom: var(--space-2);
}

.case-card__excerpt {
  font-size: 0.9375rem;
  color: var(--creo-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.case-card__stats {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding: var(--space-3);
  background: var(--creo-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

.case-stat {
  flex: 1;
  min-width: 80px;
  text-align: center;
}

.case-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--creo-accent);
  line-height: 1;
}

.case-stat-label {
  font-size: 0.75rem;
  color: var(--creo-muted);
  margin-top: 4px;
  line-height: 1.3;
}

.case-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--creo-mid);
}

.case-industry {
  font-size: 0.8125rem;
  color: var(--creo-muted);
  font-weight: 500;
}

/* ─── INDUSTRY CARD EXTENDED ──────────────────────────────────── */
.industry-card {
  text-align: left;
  cursor: default;
}

.industry-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.industry-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--creo-dark);
  margin-bottom: 2px;
}

.industry-card__sub {
  font-size: 0.8125rem;
  color: var(--creo-muted);
}

.industry-card__desc {
  font-size: 0.9375rem;
  color: var(--creo-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.industry-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-3);
}

.industry-solutions .tag {
  background: rgba(255, 106, 0, 0.08);
  color: var(--creo-accent);
  border: 1px solid rgba(255, 106, 0, 0.15);
  font-size: 0.75rem;
}

.industry-results {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-3);
  background: var(--creo-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
}

.industry-result-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--creo-accent);
  display: block;
  line-height: 1;
}

.industry-result-label {
  font-size: 0.75rem;
  color: var(--creo-muted);
  display: block;
  margin-top: 4px;
}

/* ─── GRID 2-4 COMBO ─────────────────────────────────────────── */
@media (min-width: 768px) {
  .grid-2.grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─── HIDE BUTTON ON MOBILE ──────────────────────────────────── */
@media (max-width: 1023px) {
  .hide-mobile {
    display: none !important;
  }
}

/* ─── DIAGNÓSTICO INTERACTIVO: CHAOS TO SCALE ────────────────── */
.diagnosis-section {
  padding: 120px 0;
  overflow: hidden;
}

.diagnosis-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
  align-items: flex-start;
}

.board-column {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 40px;
  min-height: 650px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.board-column.drag-over {
  background: rgba(255, 106, 0, 0.05);
  border-color: rgba(255, 106, 0, 0.3);
  transform: scale(1.01);
}

.column-header {
  margin-bottom: 40px;
}

.column-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.column-title-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0;
  color: var(--creo-white);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
}

.dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.3;
}

.dot-chaos {
  background: #ff4d4d;
  color: #ff4d4d;
  box-shadow: 0 0 15px rgba(255, 77, 77, 0.4);
}

.dot-scale {
  background: #22c55e;
  color: #22c55e;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.card-count {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 800;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.column-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.5;
}

.column-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 450px;
}

.diagnosis-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  cursor: grab;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.diagnosis-card:active {
  cursor: grabbing;
}

.diagnosis-card.dragging {
  opacity: 0;
  transform: scale(0.95);
}

.diagnosis-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.diagnosis-card .card-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--creo-accent);
  margin-bottom: 12px;
  display: block;
}

.diagnosis-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--creo-white);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.diagnosis-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
  transition: all 0.4s ease;
}

/* Scaled State */
.diagnosis-card.is-scaled {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.03);
}

.diagnosis-card.is-scaled:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.06);
}

.diagnosis-card.is-scaled h4 {
  color: #22c55e;
}

.diagnosis-card.is-scaled .card-tag {
  color: #22c55e;
  opacity: 0.8;
}

.diagnosis-card.is-scaled p {
  color: rgba(255, 255, 255, 0.8);
}

/* Transformation Animation */
.fade-slide {
  animation: fadeSlide 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.diagnosis-completion {
  animation: completionShow 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes completionShow {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1023px) {
  .diagnosis-board {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .board-column {
    min-height: auto;
    padding: 32px 24px;
  }

  .diagnosis-section {
    padding: 80px 0;
  }
}

/* ─── BENTO MARKETING: INTERACTIVE FLIP CARDS ────────────────── */
.marketing-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.bento-flip-card {
  perspective: 1500px;
  height: 480px;
  /* Base height */
}

.bento-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.bento-flip-card.is-flipped .bento-flip-card__inner {
  transform: rotateY(180deg);
}

.bento-flip-card__front,
.bento-flip-card__back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-flip-card__front {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.bento-flip-card__back {
  background: var(--creo-light);
  transform: rotateY(180deg);
  color: var(--creo-dark);
}

.bento-flip-card h3 {
  font-size: 1.5rem;
  margin: 14px 0;
  font-weight: 800;
}

.bento-flip-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* Specific Card Layouts */
.bento-item--large {
  grid-column: span 6;
  grid-row: span 2;
  height: auto;
  min-height: 520px;
}

.bento-item--small {
  grid-column: span 3;
  height: 248px;
}

.bento-item--wide {
  grid-column: span 12;
  height: auto;
  min-height: 160px;
}

/* Visual inside cards */
.bento-flip-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--creo-accent);
}

.bento-flip-card__back .bento-flip-card__icon {
  background: rgba(11, 23, 61, 0.1);
  color: var(--creo-dark);
}

/* Cursor Tooltip Styling */
.bento-cursor-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--creo-accent-hover);
  color: white;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -100%) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.bento-cursor-tooltip.is-active {
  opacity: 1;
  transform: translate(-50%, -130%) scale(1);
}

@media (max-width: 1024px) {
  .bento-cursor-tooltip {
    display: none !important;
  }
}

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

  .bento-item--large,
  .bento-item--small,
  .bento-item--wide {
    grid-column: span 1;
    height: 350px;
  }
}

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

  .bento-item--large,
  .bento-item--small,
  .bento-item--wide {
    grid-column: span 1;
    height: 320px;
    padding: 24px;
  }

  .bento-flip-card__front,
  .bento-flip-card__back {
    padding: 30px;
  }
}

/* =========================================================================
   BENTO 1: NOTIFICATION WIDGET (LOST OPPORTUNITIES)
   ========================================================================= */
.notif-floating-wrap {
  position: relative;
  width: 280px;
  height: auto;
  animation: float-notif 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes float-notif {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.notif-shadow-1,
.notif-shadow-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  top: 0;
  left: 0;
  z-index: 0;
}

.notif-shadow-1 {
  transform: translateY(8px) scale(0.95);
  opacity: 0.6;
}

.notif-shadow-2 {
  transform: translateY(16px) scale(0.9);
  opacity: 0.3;
}

.notif-widget {
  position: relative;
  z-index: 10;
  background: rgba(160, 150, 210, 0.9);
  /* Light purple tint similar to original image */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.notif-app {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notif-icon-wrap {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.notif-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.notif-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.notif-body h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: 0.2px;
}

.notif-body p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.notif-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background: var(--creo-accent-hover);
  /* Orange */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.5);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 106, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}