/* ==========================================
   Image Care Dental - Static Site
   Objetivo: replicar el look & feel del sitio React
   ========================================== */

:root {
  --background: 220 25% 97%;
  --foreground: 220 45% 15%;

  --card: 0 0% 100%;
  --card-foreground: 220 45% 15%;

  --primary: 218 55% 18%;
  --primary-foreground: 0 0% 100%;

  --secondary: 175 50% 38%;
  --secondary-foreground: 0 0% 100%;

  --muted: 220 20% 94%;
  --muted-foreground: 220 20% 40%;

  --accent: 42 85% 55%;
  --accent-foreground: 220 55% 15%;

  --destructive: 0 72% 51%;

  --border: 220 20% 90%;
  --radius: 16px;

  --gradient-hero: linear-gradient(160deg, hsl(218 55% 14%) 0%, hsl(218 55% 22%) 40%, hsl(210 50% 28%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(42 85% 55%) 0%, hsl(38 90% 50%) 100%);
  --shadow-sm: 0 2px 8px -2px hsl(218 55% 18% / 0.08);
  --shadow-md: 0 8px 24px -6px hsl(218 55% 18% / 0.12);
  --shadow-lg: 0 20px 50px -12px hsl(218 55% 18% / 0.18);
  --shadow-xl: 0 32px 64px -16px hsl(218 55% 18% / 0.22);

  --font-heading: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { font-family: var(--font-heading); margin: 0; letter-spacing: -0.02em; }

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container-wide { padding: 0 32px; }
}
@media (min-width: 1024px) {
  .container-wide { padding: 0 48px; }
}

/* Icons */
.icon { width: 1em; height: 1em; }
.icon-sm { font-size: 14px; }
.icon-md { font-size: 18px; }
.icon-lg { font-size: 22px; }
.icon-xl { font-size: 42px; }

/* Typography helpers */
.h2 {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 800;
}
.h2-invert { color: hsl(var(--primary-foreground)); }
.h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}
.h3-invert { color: hsl(var(--primary-foreground)); }

.p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}
.p strong { color: hsl(var(--foreground)); font-weight: 600; }
.p-invert { color: hsl(var(--primary-foreground) / 0.7); }
.p-invert strong { color: hsl(var(--primary-foreground)); }

.p-sm {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}
.p-sm.p-invert { color: hsl(var(--primary-foreground) / 0.65); }

.kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 18px;
}
.kicker.small { letter-spacing: 0.2em; font-size: 12px; }

.text-accent { color: hsl(var(--accent)); }
.text-danger { color: hsl(var(--destructive)); }
.text-accent-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}
.chip-danger { background: hsl(var(--destructive) / 0.1); color: hsl(var(--destructive)); }
.chip-accent { background: hsl(var(--accent) / 0.2); color: hsl(var(--accent)); }
.chip-primary { background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }
.chip-glass {
  background: hsl(var(--primary-foreground) / 0.08);
  color: hsl(var(--primary-foreground) / 0.9);
  border: 1px solid hsl(var(--primary-foreground) / 0.15);
  backdrop-filter: blur(12px);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.dot-danger { background: hsl(var(--destructive)); box-shadow: 0 0 0 6px hsl(var(--destructive) / 0.12); }
.dot-accent { background: hsl(var(--accent)); }

.section-head { margin: 0 auto 34px; max-width: 920px; }
.section-head.center { text-align: center; }

/* Buttons */
.btn-hero,
.btn-hero-premium,
.btn-ghost-hero,
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
  user-select: none;
}

.btn-hero {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  background: var(--gradient-accent);
  color: hsl(var(--foreground));
  box-shadow: 0 4px 20px hsl(42 85% 55% / 0.35), 0 0 0 1px hsl(42 85% 55% / 0.1) inset;
}
.btn-hero:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px hsl(42 85% 55% / 0.45), 0 0 0 1px hsl(42 85% 55% / 0.2) inset; }

.btn-hero-premium {
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 900;
  background: var(--gradient-accent);
  color: hsl(var(--foreground));
  box-shadow: 0 6px 30px hsl(42 85% 55% / 0.4), 0 0 0 2px hsl(42 85% 55% / 0.15) inset;
}
.btn-hero-premium:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 45px hsl(42 85% 55% / 0.5), 0 0 0 2px hsl(42 85% 55% / 0.25) inset; }
.btn-hero-premium.small { padding: 14px 20px; font-size: 16px; }
.btn-hero-premium.full { width: 100%; padding: 16px 22px; font-size: 18px; }

.btn-ghost-hero {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid hsl(var(--primary-foreground) / 0.3);
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary-foreground) / 0.05);
  backdrop-filter: blur(12px);
}
.btn-ghost-hero:hover { transform: translateY(-2px); background: hsl(var(--primary-foreground) / 0.12); border-color: hsl(var(--primary-foreground) / 0.5); }
.btn-ghost-hero.dark { border-color: hsl(var(--primary-foreground) / 0.18); }

.btn-accent {
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 900;
  background: hsl(var(--accent));
  color: #fff;
  box-shadow: 0 12px 35px hsl(var(--accent) / 0.25);
}
.btn-accent:hover { transform: translateY(-3px); }
.btn-accent.big { padding: 18px 30px; }

.btn-square { width: 48px; height: 48px; padding: 0; border-radius: 14px; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1024px) { .header-inner { height: 128px; } }

.logo { display: inline-flex; align-items: center; margin-left: -8px; }
.logo-img { height: 64px; width: auto; transition: filter 240ms ease; }
@media (min-width: 640px) { .logo-img { height: 76px; } }
@media (min-width: 1024px) { .logo-img { height: 92px; margin-left: -16px; } }

.header:not(.is-scrolled) .logo-img { filter: brightness(0) invert(1); }

.nav { display: none; gap: 40px; align-items: center; }
.nav-link {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 200ms ease;
}
.header.is-scrolled .nav-link { color: hsl(var(--muted-foreground)); }
.header.is-scrolled .nav-link:hover { color: hsl(var(--primary)); }
.header:not(.is-scrolled) .nav-link { color: rgba(255,255,255,0.8); }
.header:not(.is-scrolled) .nav-link:hover { color: #fff; }

.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
}
.header.is-scrolled .menu-toggle { color: hsl(var(--foreground)); }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}
@media (min-width: 768px) {
  .header-cta { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 24px 20px;
  z-index: 100;
}
.header.drawer-open .mobile-drawer { display: block; }
.mobile-drawer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.mobile-nav {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-link {
  padding: 16px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  color: hsl(var(--muted-foreground));
  transition: background 200ms ease, color 200ms ease;
}
.mobile-link:hover { 
  background: hsl(var(--muted)); 
  color: hsl(var(--primary)); 
}
.mobile-cta { 
  margin-top: 16px; 
  width: 100%; 
  text-align: center;
  padding: 16px 20px;
  font-size: 16px;
}

/* Background grid patterns */
.bg-grid-pattern,
.bg-grid-pattern-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bg-grid-pattern {
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.bg-grid-pattern-light {
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.9), hsl(var(--primary) / 0.85), hsl(var(--primary) / 0.8));
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  animation: floatSlow 12s ease-in-out infinite;
}
.orb-1 { top: 80px; right: 15%; width: 600px; height: 600px; background: hsl(var(--accent) / 0.15); }
.orb-2 { bottom: 80px; left: 10%; width: 500px; height: 500px; background: hsl(var(--secondary) / 0.10); animation-delay: 3s; }

.hero-content { position: relative; z-index: 1; padding: 140px 0 90px; }
.hero-center { max-width: 980px; margin: 0 auto; text-align: center; }

.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: hsl(var(--primary-foreground) / 0.08);
  border: 1px solid hsl(var(--primary-foreground) / 0.15);
  color: hsl(var(--primary-foreground) / 0.9);
  backdrop-filter: blur(12px);
  margin-bottom: 28px;
}
.badge-icon { color: hsl(var(--accent)); }
.badge-arrow { color: hsl(var(--primary-foreground) / 0.6); }

.hero-title {
  font-size: clamp(40px, 6.5vw, 110px);
  line-height: 0.95;
  font-weight: 900;
  color: hsl(var(--primary-foreground));
  margin-bottom: 22px;
}
.hero-title .block { display: block; }
.hero-accent { color: hsl(var(--accent)); position: relative; }

.hero-subtitle {
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.6;
  color: hsl(var(--primary-foreground) / 0.72);
  font-weight: 300;
}
.hero-subtitle strong { color: hsl(var(--primary-foreground)); font-weight: 600; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  font-size: 13px;
}
.pill-icon { color: hsl(var(--accent)); }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 36px;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-stats {
  position: relative;
  margin: 0 auto;
  max-width: 1020px;
  border-radius: 28px;
  overflow: hidden;
}
.hero-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
}
.hero-stats {
  padding: 22px;
}
@media (min-width: 768px) { .hero-stats { padding: 34px; } }

.hero-stat { position: relative; text-align: center; z-index: 1; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 1024px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: hsl(var(--accent));
  margin-bottom: 4px;
}
.hero-stat-number.alt { color: hsl(var(--primary-foreground)); }
.hero-stat-label { font-size: 13px; color: hsl(var(--primary-foreground) / 0.7); }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  opacity: 0.9;
}
.mouse {
  width: 24px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.30);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.mouse span {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes floatSlow {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes scrollIndicator {
  0%,100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(6px); }
}

/* Layout grids */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { 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); }
}

/* Cards */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: hsl(var(--primary) / 0.20); }

.card-row { display: flex; gap: 16px; }
.card-main { flex: 1; min-width: 0; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 8px; }
.card-stat { text-align: right; }
.card-stat-number { font-family: var(--font-heading); font-weight: 900; color: hsl(var(--destructive) / 0.8); }
.card-stat-label { font-size: 12px; color: hsl(var(--muted-foreground)); line-height: 1.2; }

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box.danger { background: hsl(var(--destructive) / 0.10); color: hsl(var(--destructive)); }
.icon-box.accent { background: hsl(var(--accent) / 0.20); color: hsl(var(--accent)); }
.icon-box.accent.soft { background: hsl(var(--accent) / 0.10); }
.icon-box.primary { background: hsl(var(--primary) / 0.10); color: hsl(var(--primary)); }

/* Sections spacing */
.pain, .choose, .transform, .unique, .how, .stats, .team, .method, .why, .portfolio, .testimonials, .faq, .cta, .contact {
  padding: 72px 0;
}
@media (min-width: 768px) {
  .pain, .choose, .transform, .unique, .how, .stats, .team, .method, .why, .portfolio, .testimonials, .faq, .cta, .contact { padding: 90px 0; }
}

/* Pain */
.pain { position: relative; overflow: hidden; }
.pain-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, hsl(var(--destructive) / 0.03), transparent);
}
.pain-bottom { padding-top: 20px; display: flex; justify-content: center; }
.pain-hope {
  text-align: center;
  max-width: 560px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid hsl(var(--border));
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
}
.pain-hope-title { font-family: var(--font-heading); font-weight: 900; font-size: 22px; margin: 8px 0; }
.pain-hope-icon { color: hsl(var(--accent)); }

/* Choose (primary) */
.choose { background: hsl(var(--primary)); position: relative; overflow: hidden; }
.choose-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(255,255,255,0.06), transparent 55%); }
.choose-grid { 
  display: grid; 
  gap: 48px; 
  align-items: center; 
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) { .choose-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

.choose-left h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.choose-left .p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.choose-benefits { 
  display: grid; 
  gap: 20px; 
}
@media (min-width: 640px) { 
  .choose-benefits { 
    grid-template-columns: 1fr 1fr; 
    gap: 32px 48px; 
  } 
}

.choose-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  color: hsl(var(--primary-foreground)); 
  font-weight: 500; 
  font-size: 18px; 
  line-height: 1.4; 
}

.check { 
  width: 24px; 
  height: 24px; 
  border-radius: 999px; 
  background: hsl(var(--accent) / 0.20); 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  color: hsl(var(--accent)); 
  margin-top: 2px; 
  flex-shrink: 0; 
}

/* Transform */
.transform { position: relative; background: hsl(var(--muted) / 0.30); overflow: hidden; }
.transform-bg { position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, hsl(var(--accent) / 0.08), transparent 50%), radial-gradient(circle at 70% 80%, hsl(var(--primary) / 0.05), transparent 50%); }
.compare {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.20);
  box-shadow: var(--shadow-xl);
}
@media (min-width: 1024px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { padding: 34px; }
.compare-col.before { background: linear-gradient(135deg, #1f2937, #0b1220); color: #fff; }
.compare-col.after { background: linear-gradient(135deg, #fff, #f8fafc); }
.compare-top { margin-bottom: 18px; }
.label { display: inline-block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 800; }
.label.danger { color: rgba(239,68,68,0.8); }
.label.accent { color: hsl(var(--accent)); }
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.bullet { width: 30px; height: 30px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bullet.danger { background: rgba(239,68,68,0.2); color: rgba(239,68,68,0.9); }
.bullet.accent { background: hsl(var(--accent) / 0.20); color: hsl(var(--accent)); }
.compare-col.before li { color: rgba(226,232,240,0.85); }
.compare-col.before li:hover { color: #fff; }
.compare-col.after li { color: hsl(var(--foreground)); font-weight: 600; }
.compare-col.after li:hover { color: hsl(var(--accent)); }

/* Unique */
.unique { background: hsl(var(--primary)); position: relative; overflow: hidden; }
.unique-bg { position: absolute; inset: 0; opacity: 0.10; }
.unique-bg::before, .unique-bg::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(70px);
}
.unique-bg::before { top: -60px; left: -60px; background: hsl(var(--accent)); }
.unique-bg::after { bottom: -80px; right: -60px; background: rgba(255,255,255,0.9); }

.glass {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  transition: transform 240ms ease, background 240ms ease;
}
.glass:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }

.highlight {
  margin: 42px auto 0;
  max-width: 980px;
  display: grid;
  gap: 24px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 768px) { .highlight { grid-template-columns: 220px 1fr; align-items: center; gap: 34px; padding: 30px; } }
.highlight-media { position: relative; width: 200px; height: 240px; margin: 0 auto; }
.highlight-media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid rgba(245, 158, 11, 0.3);
  filter: grayscale(1);
  box-shadow: var(--shadow-xl);
}
.highlight-glow { position: absolute; inset: -10px; border-radius: 22px; background: linear-gradient(135deg, rgba(245,158,11,0.45), rgba(59,130,246,0.25)); filter: blur(18px); }
.quote { margin: 10px 0 0; font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: hsl(var(--accent)); }

/* How */
.how { background: hsl(var(--background)); }
.card-center { text-align: center; }
.card-center .icon-box { margin: 0 auto 18px; width: 56px; height: 56px; border-radius: 18px; }
.uppercase { text-transform: uppercase; letter-spacing: 0.06em; }

/* Stats section */
.stats { background: hsl(var(--primary)); position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; }
.orb-3 { position: absolute; top: 0; right: 0; width: 800px; height: 800px; border-radius: 999px; background: hsl(var(--accent) / 0.10); filter: blur(150px); transform: translate(35%,-50%); }
.orb-4 { position: absolute; bottom: 0; left: 0; width: 600px; height: 600px; border-radius: 999px; background: hsl(var(--secondary) / 0.10); filter: blur(120px); transform: translate(-35%,50%); }

.stats-inner { position: relative; z-index: 1; }
.stats-grid { margin-top: 26px; }
.stat-card {
  position: relative;
  padding: 22px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}
.stat-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); transform: translateY(-3px); }
.stat-icon { width: 48px; height: 48px; border-radius: 16px; background: rgba(245,158,11,0.20); display: inline-flex; align-items: center; justify-content: center; color: hsl(var(--accent)); margin: 0 auto 14px; }
.stat-number { font-family: var(--font-heading); font-weight: 900; font-size: 40px; color: hsl(var(--accent)); }
.stat-label { font-weight: 800; color: hsl(var(--primary-foreground)); margin-top: 6px; }
.stat-desc { font-size: 12px; color: rgba(255,255,255,0.6); }

.city-bar { margin-top: 34px; text-align: center; opacity: 0.65; }
.city-bar p { margin: 0 0 10px; color: rgba(255,255,255,0.70); font-size: 13px; }
.cities { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 700; }

/* Team */
.team { background: #fff; position: relative; overflow: hidden; }
.team-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, hsl(var(--accent) / 0.03), transparent 70%); }
.team-grid { position: relative; z-index: 1; display: grid; gap: 34px; align-items: center; }
@media (min-width: 1024px) { .team-grid { grid-template-columns: 1.2fr 0.8fr; gap: 56px; } }
.team-copy { max-width: 760px; }
.team-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.value-card { padding: 18px; border-radius: 20px; background: linear-gradient(135deg, hsl(var(--muted) / 0.50), hsl(var(--muted) / 0.30)); border: 1px solid hsl(var(--border) / 0.50); transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: hsl(var(--accent) / 0.30); }
.value-icon { width: 48px; height: 48px; border-radius: 16px; background: hsl(var(--accent) / 0.10); display: flex; align-items: center; justify-content: center; color: hsl(var(--accent)); margin-bottom: 12px; }
.value-title { font-family: var(--font-heading); font-weight: 900; }
.value-desc { font-size: 12px; color: hsl(var(--muted-foreground)); }

/* Method */
.method { background: hsl(var(--primary)); position: relative; overflow: hidden; }
.method-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at top left, rgba(245,158,11,0.12), transparent 55%), radial-gradient(ellipse at bottom right, rgba(255,255,255,0.06), transparent 55%); }
.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.step { position: relative; text-align: center; padding: 30px 18px 22px; border-radius: 24px; }
.step-water { position: absolute; top: -10px; left: 0; right: 0; font-family: var(--font-heading); font-weight: 900; font-size: 80px; color: rgba(245,158,11,0.10); line-height: 1; }
.step-icon { width: 64px; height: 64px; border-radius: 999px; background: var(--gradient-accent); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 0 18px 40px rgba(245,158,11,0.20); }
.deliver { font-size: 12px; font-weight: 800; color: rgba(245,158,11,0.85); margin-top: 6px; }
.method-cta { text-align: center; margin-top: 30px; }

/* Why */
.why { background: hsl(var(--muted) / 0.30); }
.why-head { display: grid; gap: 16px; margin-bottom: 26px; }
@media (min-width: 1024px) { .why-head { grid-template-columns: 1.2fr 0.8fr; align-items: end; } }

/* Portfolio */
.portfolio { background: hsl(var(--primary)); position: relative; overflow: hidden; }
.portfolio-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at top left, rgba(245,158,11,0.12), transparent 55%), radial-gradient(ellipse at bottom right, rgba(255,255,255,0.06), transparent 55%); }

.carousel { position: relative; z-index: 1; margin: 26px 0 28px; }
.carousel-viewport { overflow: hidden; border-radius: 22px; }
.carousel-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform 450ms ease;
}
.slide {
  flex: 0 0 100%;
}
@media (min-width: 640px) { .slide { flex-basis: calc(50% - 9px); } }
@media (min-width: 1280px) { .slide { flex-basis: calc(33.333% - 12px); } }
.slide img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 22px; }

.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: hsl(var(--accent));
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.carousel-btn.prev { left: -14px; }
.carousel-btn.next { right: -14px; }
@media (min-width: 768px) { .carousel-btn { display: inline-flex; align-items: center; justify-content: center; } }

.portfolio-copy { position: relative; z-index: 1; text-align: center; max-width: 920px; margin: 0 auto; }
.portfolio-services { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 34px; margin-top: 20px; }
.service { display: flex; flex-direction: column; align-items: center; gap: 10px; color: hsl(var(--primary-foreground)); font-weight: 700; }
.service-icon { width: 56px; height: 56px; border-radius: 18px; background: rgba(245,158,11,0.20); display: flex; align-items: center; justify-content: center; color: hsl(var(--accent)); }

/* Testimonials */
.testimonials { background: hsl(var(--muted) / 0.30); position: relative; overflow: hidden; }
.testi-bg { position: absolute; inset: 0; background: linear-gradient(135deg, transparent, hsl(var(--accent) / 0.05)); }
.featured { position: relative; z-index: 1; margin-bottom: 26px; }
.featured-card { position: relative; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 28px; padding: 22px; box-shadow: var(--shadow-xl); }
@media (min-width: 768px) { .featured-card { padding: 34px; } }
.quote-mark { color: hsl(var(--accent) / 0.30); margin-bottom: 12px; }
.featured-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .featured-grid { grid-template-columns: 2fr 1fr; gap: 26px; } }
.featured-text { font-size: 20px; line-height: 1.6; font-weight: 300; margin: 0 0 18px; color: hsl(var(--foreground)); }
.author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 56px; height: 56px; border-radius: 999px; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; }
.author-name { font-weight: 900; }
.author-role { color: hsl(var(--muted-foreground)); }
.author-loc { font-size: 12px; color: hsl(var(--muted-foreground) / 0.7); }

.featured-side { display: flex; flex-direction: row; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .featured-side { flex-direction: column; align-items: flex-end; justify-content: center; gap: 14px; } }
.stars { color: hsl(var(--accent)); letter-spacing: 2px; font-size: 14px; font-weight: 900; }
.metric { padding: 16px 18px; border-radius: 18px; border: 1px solid hsl(var(--accent) / 0.20); background: hsl(var(--accent) / 0.10); text-align: right; }
.metric-num { font-family: var(--font-heading); font-weight: 900; font-size: 32px; color: hsl(var(--accent)); }
.metric-lbl { font-size: 12px; color: hsl(var(--muted-foreground)); }

.testi-card .testi-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.mini-metric { text-align: right; }
.mini-num { font-family: var(--font-heading); font-weight: 900; color: hsl(var(--accent)); }
.mini-lbl { font-size: 12px; color: hsl(var(--muted-foreground)); }
.author.small .avatar { width: 40px; height: 40px; background: hsl(var(--primary) / 0.10); color: hsl(var(--primary)); }
.avatar.soft { background: hsl(var(--primary) / 0.10); color: hsl(var(--primary)); }

/* FAQ */
.faq { background: hsl(var(--background)); }
.faq-grid { display: grid; gap: 26px; align-items: start; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
@media (min-width: 1024px) { .faq-left { position: sticky; top: 130px; } }
.link { color: hsl(var(--primary)); font-weight: 700; text-decoration: underline; }

.faq-item {
  border-radius: 18px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq-item + .faq-item { margin-top: 12px; }
.faq-item.is-open { border-color: hsl(var(--primary) / 0.20); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  color: hsl(var(--foreground));
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}
.faq-item.is-open .faq-a { max-height: 360px; }
.faq-a p { margin: 0; padding: 0 18px 16px; font-size: 15px; line-height: 1.65; color: hsl(var(--muted-foreground)); }
.faq-item.is-open .faq-q .icon { transform: rotate(180deg); color: hsl(var(--primary)); }
.faq-q .icon { transition: transform 240ms ease, color 240ms ease; color: hsl(var(--muted-foreground)); }

/* CTA */
.cta { background: hsl(var(--background)); }
.cta-box { position: relative; overflow: hidden; border-radius: 40px; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.95), hsl(var(--primary) / 0.90)); }
.cta-orb { position: absolute; border-radius: 999px; filter: blur(130px); }
.cta-orb-1 { top: -20px; right: -60px; width: 560px; height: 560px; background: hsl(var(--accent) / 0.15); }
.cta-orb-2 { bottom: -60px; left: -60px; width: 460px; height: 460px; background: hsl(var(--secondary) / 0.10); }
.cta-inner { position: relative; z-index: 1; padding: 28px; text-align: center; }
@media (min-width: 768px) { .cta-inner { padding: 60px; } }
.cta-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin: 22px 0; }
.benef { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.10); color: hsl(var(--primary-foreground)); font-weight: 700; font-size: 13px; }
.benef .icon { color: hsl(var(--accent)); }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; justify-content: center; align-items: stretch; margin-top: 18px; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; align-items: center; } }
.cta-foot { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.55); }

/* Contact */
.contact { position: relative; background: hsl(var(--background)); overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background: linear-gradient(135deg, hsl(var(--primary) / 0.05), transparent 55%); }
.contact-grid { position: relative; z-index: 1; display: grid; gap: 18px; max-width: 1120px; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 22px; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease; }
.contact-card:hover { background: hsl(var(--muted)); border-color: hsl(var(--primary) / 0.20); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card .meta { text-transform: uppercase; letter-spacing: 0.08em; color: hsl(var(--muted-foreground)); font-size: 12px; margin-bottom: 2px; }
.contact-card .val { font-weight: 900; font-size: 18px; }
.contact-card .arrow { margin-left: auto; color: hsl(var(--muted-foreground)); }

.callback {
  margin-top: 14px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid hsl(var(--border));
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
}
.callback h4 { margin: 0 0 10px; font-weight: 900; }
.callback p { margin: 0 0 14px; color: hsl(var(--muted-foreground)); font-size: 16px; }
.callback-form { display: grid; gap: 10px; }
.callback-form input {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 0 14px;
  font-size: 16px;
  font-family: var(--font-body);
}
.callback-row { display: flex; gap: 10px; }
.callback-row input { flex: 1; }

.form {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  padding: 24px;
}
@media (min-width: 768px) { .form { padding: 30px; } }
.form label { display: block; font-weight: 700; margin: 0 0 8px; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-body);
  background: hsl(var(--card));
}
.form textarea { resize: none; }
.form-grid { display: grid; gap: 12px; margin-bottom: 12px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.fineprint { margin: 14px 0 0; text-align: center; color: hsl(var(--muted-foreground)); }

/* Footer */
.footer { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-news { padding: 40px 0; display: grid; gap: 16px; }
@media (min-width: 1024px) { .footer-news { grid-template-columns: 1fr auto; align-items: center; } }
.footer-news h3 { font-size: 22px; font-weight: 900; margin: 0 0 8px; }
.footer-news p { margin: 0; color: rgba(255,255,255,0.70); }
.newsletter { display: flex; gap: 10px; }
.newsletter input {
  flex: 1;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  color: #fff;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 16px;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.55); }

.footer-main { padding: 56px 0 40px; }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.60); max-width: 420px; line-height: 1.7; }
.footer-col h4 { margin: 0 0 12px; font-weight: 900; }
.footer-col a { display: block; color: rgba(255,255,255,0.60); margin: 10px 0; font-size: 14px; }
.footer-col a:hover { color: rgba(255,255,255,1); }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a { width: 40px; height: 40px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.10); transition: background 200ms ease, color 200ms ease; }
.social a:hover { background: hsl(var(--accent)); color: hsl(var(--foreground)); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 18px; margin-top: 28px; display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.55); font-size: 13px; }
.heart { color: hsl(var(--accent)); }

/* Remember: the React site has no default max-width root centering.
   Ensure the static site uses full-width sections like React. */

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 300ms ease;
}
.whatsapp-btn:hover {
  background: #20BA5C;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  box-shadow: var(--shadow-lg);
}
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  animation: whatsappPulse 2s ease-in-out infinite;
  opacity: 0.3;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* Form messages */
.form-message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}

.form-message-success {
  background: hsl(142 70% 95%);
  color: hsl(142 70% 25%);
  border: 1px solid hsl(142 70% 80%);
}

.form-message-error {
  background: hsl(0 70% 95%);
  color: hsl(0 70% 35%);
  border: 1px solid hsl(0 70% 80%);
}

/* Form status (contact form) */
.form-status {
  margin-top: 1rem;
  padding: 0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-status.success {
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.form-status.error {
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.btn-hero-premium:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ============ HERO WITH VIDEO ============ */
.hero-with-video {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-with-video {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .hero-with-video .hero-center { text-align: left; align-items: flex-start; }
  .hero-with-video .hero-pills,
  .hero-with-video .hero-buttons { justify-content: flex-start; }
}
.hero-video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  border: 2px solid rgba(255,255,255,.18);
  background: #000;
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ============ FORMACION ============ */
.formacion {
  padding: 6rem 0;
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--muted)/.3) 100%);
}
.formacion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .formacion-grid { grid-template-columns: repeat(3, 1fr); }
}
.formacion-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 15px 40px -10px rgba(0,0,0,.25);
  transition: transform .4s ease, box-shadow .4s ease;
  margin: 0;
}
.formacion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px -10px rgba(0,0,0,.35);
}
.formacion-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ VIDEO TESTIMONIALS ============ */
.video-testi {
  padding: 6rem 0;
  background: hsl(var(--background));
  position: relative;
}
.video-testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .video-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .video-testi-grid { grid-template-columns: repeat(4, 1fr); }
}
.video-testi-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s ease;
}
.video-testi-item:hover { transform: translateY(-4px); }
.video-testi-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

