/* ========================================
   apconsulte — Corporate Minimal Design
   Colors: Teal + Warm Tones (from logo)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors - From Logo Palette */
  --color-bg:         #ffffff;
  --color-surface:    #f8f9fa;
  --color-elevated:   #f0f2f5;
  --color-card:       #ffffff;
  
  /* Logo colors as accents */
  --color-teal:       #6F8D97;
  --color-teal-light: #8ba5b0;
  --color-gold:       #D9B676;
  --color-coral:      #E88B69;
  --color-salmon:     #E56D63;
  --color-text:       #2d3748;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border:     rgba(111,141,151,0.15);
  --color-border-bright: rgba(111,141,151,0.3);

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* UI */
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 20px rgba(45,55,72,0.08);
  --shadow-lg:   0 12px 40px rgba(45,55,72,0.12);

  --max-width:  1200px;
  --nav-height: 64px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(232,139,105,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 90% 100%, rgba(111,141,151,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

a { color: var(--color-teal); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-salmon); }

img { max-width: 100%; display: block; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  margin-right: 10px;
}

.logo-icon span {
  border-radius: 4px;
  opacity: 0.9;
}

.logo-icon span:nth-child(1) { background: var(--color-teal); }
.logo-icon span:nth-child(2) { background: var(--color-gold); }
.logo-icon span:nth-child(3) { background: var(--color-coral); }
.logo-icon span:nth-child(4) { background: var(--color-salmon); }

.logo-text {
  font-style: italic;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Navigation */
.main-nav ul { 
  list-style: none; 
  display: flex; 
  gap: 0.25rem; 
  align-items: center;
}

.main-nav > ul > li { 
  position: relative; 
}

.main-nav > ul > li > a,
.main-nav > ul > li > button {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > button:hover { 
  color: var(--color-text); 
}

/* Nav dropdown toggle button */
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--color-text);
}

.nav-dropdown-toggle .arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  flex-direction: column;
  overflow: hidden;
  animation: fadeIn 0.2s ease;
}

.dropdown.open {
  display: flex;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-coral));
}

.dropdown li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.dropdown li a:hover {
  background: rgba(111,141,151,0.06);
  color: var(--color-text);
  border-left-color: var(--color-teal);
}

/* Desktop: hover dropdown */
@media (min-width: 769px) {
  .has-dropdown:hover .dropdown { 
    display: flex; 
  }
}

/* Nav Toggle - Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-sm);
  padding: 0;
  cursor: pointer;
  color: var(--color-text);
  width: 44px;
  height: 44px;
  position: relative;
  transition: all 0.3s ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle:hover {
  background: rgba(111,141,151,0.1);
}

.nav-toggle.active {
  background: rgba(111,141,151,0.1);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* CTA Button */
.nav-cta a {
  background: var(--color-teal);
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta a:hover {
  background: var(--color-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(111,141,151,0.3);
}

/* ===== MAIN CONTENT ===== */
main {
  padding-top: var(--nav-height);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(111,141,151,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232,139,105,0.06) 0%, transparent 30%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(111,141,151,0.1);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-teal);
  opacity: 0.4;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.125rem;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.btn:hover { 
  transform: translateY(-3px); 
}

.btn-primary {
  background: var(--color-teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(111,141,151,0.3);
}

.btn-primary:hover {
  background: var(--color-teal-light);
  box-shadow: 0 8px 30px rgba(111,141,151,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-bright);
}

.btn-outline:hover {
  background: rgba(111,141,151,0.06);
  color: var(--color-text);
  border-color: var(--color-teal);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-salmon) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,139,105,0.3);
}

.btn-accent:hover {
  box-shadow: 0 8px 30px rgba(232,139,105,0.4);
  color: #fff;
}

/* ===== SECTIONS ===== */
.section { 
  padding: 6rem 0; 
  position: relative;
}

.section-alt { 
  background: var(--color-surface);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.8;
}

.section-header { 
  margin-bottom: 3rem; 
}

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

.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Tag */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1rem;
}

.section-tag::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.4rem;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 5rem;
}

.stat-item {
  background: var(--color-card);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-coral));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  background: var(--color-elevated);
}

.stat-item:hover::after {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span { 
  color: var(--color-coral); 
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-coral));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(111,141,151,0.12) 0%, rgba(232,139,105,0.08) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.product-card:hover .icon {
  transform: scale(1.1);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.product-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.product-card a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.product-card a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.product-card a:hover { 
  gap: 0.75rem; 
  color: var(--color-salmon);
}

.product-card a:hover::after {
  transform: translateX(4px);
}

/* ===== SLIDER ===== */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.slider { 
  display: flex; 
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}

.slide {
  min-width: 100%;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.slide::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,141,151,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,141,151,0.5), transparent);
}

.slide h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
}

.slide h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: -0.75rem;
  width: 40px;
  height: 2px;
  background: var(--color-coral);
}

.slide p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.slide a {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border-bright);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--color-teal);
  transform: scale(1.3);
}

/* ===== VALUES CARDS ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.value-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-teal), var(--color-coral));
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

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

.value-card:hover::before {
  opacity: 1;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.value-card a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-teal);
  display: inline-block;
  margin-top: 1rem;
}

.value-card a:hover {
  color: var(--color-salmon);
}

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-split .prose {
  max-width: 520px;
}

.about-split .prose p {
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(111,141,151,0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-section .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
}

.page-header::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(111,141,151,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  position: relative;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { 
  color: var(--color-text-muted); 
}

.breadcrumb a:hover { 
  color: var(--color-teal); 
}

/* ===== PROSE ===== */
.prose {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.prose p + p { 
  margin-top: 1.5rem; 
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--color-text);
}

.prose strong { 
  color: var(--color-text); 
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--color-teal);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(111,141,151,0.12) 0%, rgba(232,139,105,0.08) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  margin-bottom: 0.4rem;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.6;
}

.contact-item-value a {
  color: var(--color-text);
}

.contact-item-value a:hover {
  color: var(--color-teal);
}

/* Form */
.form-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-coral));
}

.form-group { 
  margin-bottom: 1.5rem; 
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: all 0.3s ease;
}

.form-group select option {
  background: var(--color-surface);
}

.form-group input::placeholder,
.form-group textarea::placeholder { 
  color: var(--color-text-light); 
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(111,141,151,0.15);
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p { 
  font-size: 0.9rem; 
  max-width: 260px; 
  line-height: 1.7; 
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.footer-nav ul { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 0.75rem; 
}

.footer-nav a { 
  color: var(--color-text-muted); 
  font-size: 0.9rem; 
  transition: color 0.3s ease;
}

.footer-nav a:hover { 
  color: var(--color-text); 
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list li {
  font-size: 0.9rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer-contact-list li::before {
  content: '●';
  font-size: 0.4rem;
  color: var(--color-teal);
  margin-top: 0.5rem;
}

.footer-contact-list a { 
  color: var(--color-text-muted); 
}

.footer-contact-list a:hover { 
  color: var(--color-text); 
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { 
  color: var(--color-text-light); 
  font-size: 0.8rem; 
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-split { 
    grid-template-columns: 1fr; 
    gap: 3rem; 
  }
  
  .footer-inner { 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
  }
}

@media (max-width: 768px) {
  /* Disable hover dropdown on mobile */
  .has-dropdown:hover .dropdown {
    display: none !important;
  }
  
  /* Prevent hover from showing dropdowns */
  .has-dropdown {
    pointer-events: auto;
  }
  
  .nav-toggle { 
    display: flex;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  
  .main-nav.open { 
    display: block; 
    animation: fadeIn 0.3s ease;
  }
  
  .main-nav ul { 
    flex-direction: column; 
    gap: 0; 
  }
  
  .main-nav > ul > li > a,
  .main-nav > ul > li > button {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    width: 100%;
    text-align: left;
  }
  
  .dropdown {
    display: none !important;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: transparent;
    margin-top: 0.5rem;
  }
  
  .dropdown li a {
    padding: 0.6rem 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
  }
  
  .has-dropdown.open > .dropdown {
    display: flex !important;
  }
  
  .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 2.5rem; 
  }
  
  .footer-inner { 
    grid-template-columns: 1fr; 
    gap: 2.5rem; 
  }
  
  .footer-bottom { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  
  .stats-strip { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .hero { 
    padding: 6rem 0 4rem; 
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .product-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-strip { 
    grid-template-columns: 1fr; 
  }
  
  .hero h1 { 
    font-size: 2rem; 
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   NUEVAS CLASES — REDISEÑO PREMIUM
   ============================================================ */

/* ===== KEYFRAMES ADICIONALES ===== */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 4px 20px rgba(111,141,151,.3); }
  50%     { box-shadow: 0 4px 48px rgba(111,141,151,.55); }
}

@keyframes borderGlow {
  0%,100% { border-color: rgba(111,141,151,.25); }
  50%     { border-color: rgba(111,141,151,.6); }
}

@keyframes dataFlow {
  from        { left: 0%;   opacity: 1; }
  80%         { opacity: 1; }
  to          { left: 100%; opacity: 0; }
}

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

/* ===== HERO ASIMÉTRICO ===== */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.hero-content .hero-eyebrow { display: inline-flex; }

.hero-layout .hero-actions {
  justify-content: flex-start;
}

.hero-layout h1,
.hero-layout p {
  margin-left: 0;
  margin-right: 0;
}

.hero-visual {
  position: relative;
  z-index: 1;
  animation: fadeInUp .9s .25s ease both;
}

.hero-visual-inner {
  animation: float 5s ease-in-out infinite;
}

.btn-primary {
  animation: pulseGlow 3.5s ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-layout .hero-actions { justify-content: center; }
  .hero-layout h1,
  .hero-layout p { margin-left: auto; margin-right: auto; }
}

/* ===== TICKER MARQUEE ===== */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: .875rem 0;
  background: var(--color-surface);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.ticker-sep {
  color: var(--color-coral);
  font-size: .6rem;
}

/* ===== STATS GRID (reemplaza stats-strip) ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 4rem;
}

.stat-block {
  background: var(--color-card);
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-coral));
  transition: width .4s ease;
}
.stat-block:hover { background: var(--color-elevated); }
.stat-block:hover::after { width: 100%; }

.stat-display {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: .5rem;
}
.stat-display em {
  color: var(--color-coral);
  font-style: normal;
}

.stat-context {
  font-size: .75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
  line-height: 1.5;
}

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

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: var(--color-elevated);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(111,141,151,.09) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.img-placeholder-icon {
  width: 36px; height: 36px;
  color: var(--color-text-light);
  opacity: .5;
  z-index: 1;
}

.img-placeholder-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: .25rem .75rem;
  border: 1px solid var(--color-border-bright);
  border-radius: 100px;
  z-index: 1;
}

.img-placeholder-desc {
  font-size: .78rem;
  color: var(--color-text-light);
  text-align: center;
  max-width: 72%;
  line-height: 1.5;
  z-index: 1;
}

/* ===== INTEGRATION DIAGRAM ===== */
.int-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0 2rem;
  gap: 0;
}

.int-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 1;
}

.int-node-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-elevated);
  border: 2px solid rgba(111,141,151,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: borderGlow 3s ease-in-out infinite;
  color: var(--color-teal);
}
.int-node:nth-child(1) .int-node-circle { animation-delay: 0s; }
.int-node:nth-child(3) .int-node-circle { animation-delay: 1s; }
.int-node:nth-child(5) .int-node-circle { animation-delay: 2s; }

.int-node-label {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}

.int-connector {
  flex: 1;
  max-width: 70px;
  height: 2px;
  position: relative;
  overflow: visible;
  margin-bottom: 1.75rem;
}
.int-connector::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(111,141,151,.5), rgba(111,141,151,.15));
}
.int-connector::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-teal);
  animation: dataFlow 2.5s linear infinite;
}
.int-connector:nth-of-type(4)::before { animation-delay: 1.25s; }

.int-node-hub .int-node-circle {
  width: 88px; height: 88px;
  border-color: rgba(217,182,118,.5);
  color: var(--color-gold);
}

@media (max-width: 480px) {
  .int-diagram { flex-direction: column; gap: .75rem; }
  .int-connector {
    max-width: 2px; width: 2px; height: 40px;
    margin-bottom: 0; margin-right: 1.75rem;
  }
  .int-connector::before { top: 0; left: 50%; transform: translateX(-50%);
    animation: none; }
}

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento-wide { grid-column: span 7; }
.bento-tall { grid-column: span 5; }
.bento-med  { grid-column: span 4; }
.bento-sm   { grid-column: span 3; }

.bento-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color .3s, box-shadow .3s, transform .25s;
  opacity: 0;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-coral));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.bento-card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.bento-card:hover::before { transform: scaleX(1); }

/* Stagger reveal */
.bento-card.revealed { animation: revealFade .55s cubic-bezier(.4,0,.2,1) both; }
.bento-card:nth-child(1).revealed { animation-delay: 0s; }
.bento-card:nth-child(2).revealed { animation-delay: .1s; }
.bento-card:nth-child(3).revealed { animation-delay: .2s; }
.bento-card:nth-child(4).revealed { animation-delay: .3s; }

.bento-card-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.bento-card-img .img-zoom {
  border-radius: var(--radius);
}
.bento-card-img .img-zoom img {
  object-fit: contain;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--color-text);
}

.bento-card p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

.bento-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .25s, color .2s;
  margin-top: auto;
}
.bento-link:hover { gap: .7rem; color: var(--color-salmon); }

.bento-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(111,141,151,.12), rgba(232,139,105,.08));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  color: var(--color-teal);
  transition: transform .25s;
}
.bento-card:hover .bento-icon { transform: scale(1.08); }

.bento-card-accent {
  background: linear-gradient(135deg, rgba(217,182,118,.08), rgba(232,139,105,.05));
  border-color: rgba(217,182,118,.3);
}
.bento-card-accent .bento-icon {
  background: linear-gradient(135deg, rgba(217,182,118,.15), rgba(232,139,105,.1));
  border-color: rgba(217,182,118,.3);
  color: var(--color-gold);
}
.bento-card-accent .bento-link { color: var(--color-gold); }
.bento-card-accent .bento-link:hover { color: var(--color-coral); }

.bento-card-wa {
  background: linear-gradient(135deg, rgba(37,211,102,.08), rgba(37,211,102,.03));
  border-color: rgba(37,211,102,.3);
}
.bento-card-wa .bento-icon {
  background: rgba(37,211,102,.12);
  border-color: rgba(37,211,102,.25);
  color: #25D366;
}
.bento-card-wa .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  padding: .65rem 1.25rem;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: background .2s, transform .2s;
}
.bento-card-wa .wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-wide, .bento-tall, .bento-med, .bento-sm {
    grid-column: span 1; grid-row: span 1;
  }
}
@media (max-width: 580px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ===== PRINCIPIOS NUMERADOS ===== */
.principles-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.principle-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color .25s, box-shadow .25s;
}
.principle-item:hover {
  border-color: rgba(111,141,151,.4);
  box-shadow: var(--shadow);
}

.principle-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(111,141,151,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  transition: color .25s;
}
.principle-item:hover .principle-num { color: rgba(111,141,151,.45); }

.principle-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: .4rem;
}
.principle-body p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.principle-body a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-teal);
  display: inline-block;
  margin-top: .6rem;
}
.principle-body a:hover { color: var(--color-salmon); }

@media (max-width: 900px) {
  .principles-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== CTA HORIZONTAL ===== */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Overrides for the CTA section */
.cta-section {
  text-align: left;
  position: relative;
}
.cta-section::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--color-teal) 30%, var(--color-coral) 70%, transparent);
}
.cta-section .section-title { color: #fff; }
.cta-section .section-subtitle { margin-left: 0; margin-right: 0; margin-bottom: 0; }

/* ===== IMAGE ZOOM EFFECT ===== */
.img-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  width: 100%;
}
.img-zoom img {
  width: 100%;
  display: block;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.img-zoom:hover img {
  transform: scale(1.06);
}

/* ===== IN-PAGE NAV (anchor scroll) ===== */
.page-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: .7rem 0;
}

.page-nav-list {
  display: flex;
  gap: .4rem;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.page-nav-list::-webkit-scrollbar { display: none; }

.page-nav-link {
  display: inline-block;
  padding: .45rem 1.15rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  letter-spacing: .02em;
  transition: background .2s, color .2s;
  border: 1px solid transparent;
}
.page-nav-link:hover {
  background: rgba(111,141,151,.1);
  color: var(--color-text);
}
.page-nav-link.active {
  background: var(--color-teal);
  color: #fff;
  border-color: transparent;
}

/* ===== CATALOG SECTION (productos) ===== */
.catalog-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: calc(var(--nav-height) + 56px);
}
.catalog-section:last-of-type { border-bottom: none; }

.catalog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.catalog-layout.reverse { direction: rtl; }
.catalog-layout.reverse > * { direction: ltr; }

.catalog-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.25rem 0 1.75rem;
}
.catalog-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.catalog-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  flex-shrink: 0;
  margin-top: .55rem;
}

@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .catalog-layout.reverse { direction: ltr; }
}

/* Anchor offset for in-page sections */
.anchor-target {
  scroll-margin-top: calc(var(--nav-height) + 56px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PULL QUOTE (mision/vision/filosofia) ===== */
.pull-quote {
  border-left: 3px solid var(--color-coral);
  padding: 1rem 0 1rem 2rem;
  margin-bottom: 2.5rem;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: -.015em;
}

/* ===== EDITORIAL LINKS (quienes-somos) ===== */
.editorial-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.editorial-link {
  flex: 1;
  min-width: 180px;
  padding: 1.25rem 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  font-weight: 600;
  font-size: .9rem;
  font-family: var(--font-display);
  transition: border-color .25s, box-shadow .25s, transform .2s;
  box-shadow: var(--shadow);
}
.editorial-link span { color: var(--color-teal); transition: transform .25s; }
.editorial-link:hover {
  border-color: rgba(111,141,151,.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--color-text);
}
.editorial-link:hover span { transform: translateX(4px); }