:root {
  /* Colors based on original site with premium tweaks */
  --color-meteorite-dark: #2f1c6a;
  --color-meteorite-dark-2: #1F1346;
  --color-primary: #673de6;
  --color-primary-light: #ebe4ff;
  --color-accent: #357df9;
  --color-danger: #fc5185;
  --color-dark: #1d1e20;
  --color-gray: #727586;
  --color-gray-light: #f2f3f6;
  --color-light: #ffffff;
  --color-success: #00b090;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Utilities */
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(47, 28, 106, 0.1);
  --shadow-hover: 0 20px 40px rgba(47, 28, 106, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-meteorite-dark-2);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-light { color: var(--color-light); }
.text-primary { color: var(--color-primary); }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 5rem 0;
}
.bg-light {
  background-color: var(--color-gray-light);
}
.bg-dark {
  background-color: var(--color-meteorite-dark-2);
  color: var(--color-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
  box-shadow: 0 4px 15px rgba(103, 61, 230, 0.4);
}
.btn-primary:hover {
  background-color: var(--color-meteorite-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(103, 61, 230, 0.5);
  color: var(--color-light);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
}
.btn-outline:hover {
  background-color: var(--color-light);
  color: var(--color-primary);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-light);
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--color-accent);
}
.navbar.scrolled .logo {
  color: var(--color-meteorite-dark-2);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links li a {
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: var(--transition);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-light);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31,19,70,0.85) 0%, rgba(103,61,230,0.65) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 600px;
}
.hero-title {
  font-size: 4rem;
  color: var(--color-light);
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Features/Services Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.service-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.service-content {
  padding: 2rem;
}
.service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.service-content p {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--color-primary);
}
.service-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}
.service-card:hover .service-link::after {
  transform: translateX(5px);
}

/* Page Header */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--color-meteorite-dark-2);
  color: var(--color-light);
  text-align: center;
}
.page-header h1 {
  color: var(--color-light);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}
.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-gray-light);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-light);
  box-shadow: 0 0 0 4px var(--color-primary-light);
}
textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.footer {
  background-color: var(--color-meteorite-dark-2);
  color: var(--color-light);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--color-light);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
.footer p, .footer li a {
  color: rgba(255,255,255,0.7);
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 0.75rem;
}
.footer ul li a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-light);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.4s ease-in-out;
  }
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .nav-links li a {
    color: var(--color-dark);
    font-size: 1.25rem;
  }
  .navbar .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Language Selector Styles */
.lang-selector {
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  outline: none;
  font-weight: 500;
}
.lang-selector:focus {
  border-color: var(--color-primary);
}

/* Shatter Effect Styles */
.shatter-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background-color: #000;
  height: 400px;
  cursor: pointer;
  perspective: 1000px;
}
.shatter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.shatter-pieces {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  z-index: 2;
  pointer-events: none;
}
.shatter-piece {
  background-size: 600% 600%; /* Because it's a 6x6 grid */
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
  transform: translate3d(0,0,0) rotate(0deg);
  opacity: 0; /* Hidden initially, will only show on hover when bg hides */
}
/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slider .slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 5, 59, 0.7), rgba(64, 46, 130, 0.8));
  z-index: 1;
}
.shatter-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(18, 5, 59, 1) 0%, rgba(18, 5, 59, 0.6) 70%, rgba(18, 5, 59, 0) 100%);
  z-index: 3;
  transition: transform 0.4s ease, background 0.4s ease;
}
.shatter-content-overlay h3 {
  color: var(--color-light);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.shatter-content-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: opacity 0.4s ease;
}
.shatter-content-overlay .service-link {
  color: #fff;
  opacity: 1;
  font-weight: 600;
  text-decoration: underline;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: color 0.4s ease;
}
.shatter-content-overlay .service-link:hover {
  color: var(--color-primary-light);
}

/* ==========================================================================
   SEO PILLAR PAGE STYLES (pisos-epoxicos-industriales.html)
   ========================================================================== */

/* Grid Columns Utility */
.grid-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Styled List */
.styled-list {
  list-style: none;
  padding: 0;
}
.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}
.styled-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.process-step {
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-primary);
}
.process-step h3 {
  font-size: 1.25rem;
  color: var(--color-meteorite-dark);
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Tags Container */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.tag {
  background: var(--color-primary-light);
  color: var(--color-meteorite-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(103, 61, 230, 0.2);
}

/* FAQ Accordion */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--color-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}
.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--color-light);
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: var(--color-gray-light);
}
.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-meteorite-dark);
}
.faq-question .icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--color-light);
  padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq-answer p {
  margin: 0;
  color: var(--color-gray);
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-grid label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-meteorite-dark);
}

/* Alert Box */
.alert-box {
  background: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffeeba;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

/* Interactive Module */
.interactive-module {
  background: var(--color-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}
.config-step {
  display: none;
  animation: fadeIn 0.5s ease;
}
.config-step.active {
  display: block;
}
.config-step h3 {
  text-align: center;
  color: var(--color-meteorite-dark);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.btn-option {
  background: var(--color-gray-light);
  border: 2px solid transparent;
  padding: 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition);
}
.btn-option:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.result-box {
  background: var(--color-meteorite-dark);
  color: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}
@keyframes pulse-wa {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Industry Cards */
.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 250px;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card:hover img {
  transform: scale(1.1);
}
.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(18,5,59,0.9), transparent);
  color: #fff;
}
.industry-content h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.industry-content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Dynamic Diagram Cards */
.diagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.diagram-card {
  background: var(--color-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--color-primary);
}
.diagram-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Falla Cards */
.falla-card {
  display: flex;
  flex-direction: column;
  background: var(--color-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.falla-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.falla-card .falla-content {
  padding: 1.5rem;
}

/* Ferris Wheel */
.ferris-wheel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .ferris-wheel-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
}
.ferris-container {
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 50%;
  border: 4px dashed var(--color-primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  /* transition for rotation is handled by JS but we can add it */
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (min-width: 768px) {
  .ferris-container { width: 400px; height: 400px; }
}
.ferris-car {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--color-meteorite-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.3s;
}
.ferris-car.active {
  background: var(--color-primary);
  transform: scale(1.2);
  border: 2px solid #fff;
}
.ferris-info-panel {
  flex: 1;
  max-width: 500px;
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ferris-info-panel h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Hover States for Shatter Card */
.shatter-card.is-shattered .shatter-bg {
  opacity: 0; /* Hide the solid background */
}
.shatter-card.is-shattered .shatter-piece {
  opacity: 1; /* Show the pieces */
  /* Apply the random JS transformations */
  transform: translate3d(var(--tx), var(--ty), var(--tz)) rotate(var(--rot)) scale(0.5);
  opacity: 0; /* Fade out as they shatter */
}
.shatter-card:hover .shatter-content-overlay {
  background: linear-gradient(to top, rgba(18, 5, 59, 0.95) 0%, rgba(18, 5, 59, 0.8) 50%, rgba(18, 5, 59, 0.4) 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.shatter-card:hover .shatter-content-overlay p {
  opacity: 1;
}


/* Specialties List (Rolando Molalia style) */
.specialties-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.specialty-item {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: padding-left 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}
.specialty-item:hover {
    padding-left: 2rem;
    color: var(--color-primary);
}
.specialty-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}
.specialty-item:hover .specialty-text h3 {
    color: var(--color-primary);
}
.specialty-text p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}
.cursor-image-follower {
    position: fixed;
    top: 0; left: 0;
    width: 350px; height: 250px;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s ease, transform 0.15s ease-out;
    z-index: 10;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.cursor-image-follower.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.specialty-mobile-img {
    display: none;
}
@media (max-width: 768px) {
    .specialty-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 0 !important;
    }
    .specialty-mobile-img {
        display: block;
        width: 100%;
        height: 0;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius);
        margin-top: 0;
        transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.6s ease;
    }
    .specialty-item.in-view .specialty-mobile-img {
        height: 200px;
        margin-top: 1rem;
    }
    .cursor-image-follower { display: none !important; }
}
